mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 08:06:25 +00:00
8833effeff
- update RetroArch to 1.18.0 (will need to be updated later) - update cores to latest - update assets, info, shaders, overlays, database - leave kronos only for Generic.x86_64 and x11.x86_64 - putt back some RetroArch changes (shutdown/restart, path) - get_git: use PKG_ var for skipping submodules
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/
|
|
}
|