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
20 lines
520 B
Makefile
20 lines
520 B
Makefile
PKG_NAME="bsnes2014"
|
|
PKG_VERSION="a9c12bad40ad9a7a5fa0139a25a10f1c24d56bb2"
|
|
PKG_LICENSE="GPLv3"
|
|
PKG_SITE="https://github.com/libretro/bsnes2014"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Libretro fork of bsnes. As close to upstream as possible."
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
pre_make_target() {
|
|
if [ "${ARCH}" = "aarch64" ];then
|
|
LDFLAGS+=" -lgcc"
|
|
fi
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v bsnes2014_performance_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|