mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-03-01 04:31:30 +00:00
- update RetroArch to 1.10.2 and drop patch merged upstream - RetroArch: disable core system files downloader (included in image) - update almost all cores to their latest version - drop duckstation core - modify libretro_update.sh script to allow for updates to latest tagged commit - modify some packages to use latest tag during automated update - update liblcf to 0.7.0 (EasyRPG dependency) and drop patches - do not rename `genesis_plus_gx_wide_libretro.so` to `genesis_plus_gx_libretro.so` in the install path
25 lines
675 B
Makefile
25 lines
675 B
Makefile
PKG_NAME="fbalpha2012"
|
|
PKG_VERSION="7f8860543a81ba79c0e1ce1aa219af44568c628a"
|
|
PKG_LICENSE="Non-commercial"
|
|
PKG_SITE="https://github.com/libretro/fbalpha2012"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Port of Final Burn Alpha 2012 to Libretro"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="-f makefile.libretro \
|
|
-C svn-current/trunk"
|
|
|
|
if [ "${ARCH}" = "arm" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" platform=armv"
|
|
fi
|
|
|
|
pre_make_target() {
|
|
PKG_MAKE_OPTS_TARGET+=" CC=${CC} CXX=${CXX}"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v svn-current/trunk/fbalpha2012_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|