0
0
mirror of https://github.com/libretro/Lakka-LibreELEC.git synced 2025-01-31 20:02:31 +00:00
Tomáš Kelemen (vudiq) ceee8b9e28 update libretro cores + retroarch
following cores were not updated and removed from build, as they fail to
build with old as well as updated:
- citra
- dolphin
- easyrpg
- mame
- mupen64plus_next
- pcsx2
- ppsspp
- same_cdi

build tested only for Generic.x86_64
2024-04-09 14:29:40 +02:00

25 lines
675 B
Makefile

PKG_NAME="fbalpha2012"
PKG_VERSION="b7ac554c53561d41640372f23dab15cd6fc4f0c4"
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/
}