Skip to content

Commit

Permalink
First draft reicast emulator core. Not working
Browse files Browse the repository at this point in the history
Change-Id: I73d55f3bc48dcc78a6ec22a0fb04c77f927f06df
Signed-off-by: Romain Forlot <[email protected]>
  • Loading branch information
Romain Forlot committed Jan 3, 2018
1 parent 35051f8 commit c11ed36
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions recipes-retroarch/reicast-emulator/reicast-emulator_git.bb
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
SUMMARY = "Standalone port/fork of Mednafen PSX to the Libretro API."
HOMEPAGE = "http://github.com/libretro/beetle-psx-libretro"
SECTION = "emulators"

LICENSE = "GPLv2 & LGPLv2.1"
LIC_FILES_CHKSUM = "file://LICENSE;md5=b234ee4d69f5fce4486a80fdaf4a4263 \
"
FILESEXTRAPATHS_prepend := "${THISDIR}/${PN}:"

SRC_URI = "git://github.com/libretro/reicast-emulator.git;protocol=https \
"

SRCREV = "${AUTOREV}"

S = "${WORKDIR}/git"

inherit autotools-brokensep

do_compile() {
ARCH=arm make
}

do_install() {
install -d ${D}/usr/lib/libretro
install -m 0755 reicast_libretro.so ${D}/usr/lib/libretro
}

FILES_${PN} += " /usr/lib/libretro/reicast_libretro.so"

0 comments on commit c11ed36

Please sign in to comment.