-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
First draft reicast emulator core. Not working
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.
There are no files selected for viewing
28 changes: 28 additions & 0 deletions
28
recipes-retroarch/reicast-emulator/reicast-emulator_git.bb
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" |