mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-22 08:06:25 +00:00
ec0a3ea83a
- cores updated to latest commit / latest tag - retroarch updated to 1.14.0 - libzip: add PIC flag (for ppsspp)
20 lines
652 B
Makefile
20 lines
652 B
Makefile
PKG_NAME="snes9x2002"
|
|
PKG_VERSION="540baad622d9833bba7e0696193cb06f5f02f564"
|
|
PKG_LICENSE="Non-commercial"
|
|
PKG_SITE="https://github.com/libretro/snes9x2002"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Snes9x 2002. Port of SNES9x 1.39 for libretro (was previously called PocketSNES). Heavily optimized for ARM."
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="platform=unix"
|
|
|
|
if [ "${PROJECT}" = "RPi" ] && [ "${DEVICE}" = "RPi" -o "${DEVICE}" = "GPICase" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" ARM_ASM=1"
|
|
fi
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v snes9x2002_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|