mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-15 04:45:45 +00:00
- update all cores to latest commit - update RetroArch to 1.20.0 - update core_info, database, shaders, joypad configs, overlays - retroarch: update patch - save to default config - mame: update patch - crosscompile - np2kai: rollback update - new libretro cores: - anarch - ardens - doukutsu_rs - lrps2 (supersedes pcsx2) - m2000 - melondsds - noods - panda3ds - pzretro - tamalibretro - vice: add x64dtv x64sc xcbm2 xscpu64 cores Co-authored-by: gouchi <gouchi@free.fr>
20 lines
660 B
Makefile
20 lines
660 B
Makefile
PKG_NAME="snes9x2002"
|
|
PKG_VERSION="a0709ec7dcd6de2fbebb43106bd757b649e3b7cf"
|
|
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}" = "RPiZero-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/
|
|
}
|