mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-02-12 11:38:10 +00:00
- all libretro cores updated to latest version - RetroArch updated to 1.20.0 - assets, core-infos, joypad configs, shaders, overlays, databases updated to latest version - easyrpg: removed patch merged upstream, switched to latest commit instead of tag - liblcf: updated to latest version (dep of easyrpg) - libinih: new dep of liblcf/easyrpg - mame: updated patch for crosscompilation - mupen64_plus_next: updated patch for gcc14 buildfix - picodrive: dropped patch merged upstream - retroarch: updated patch for saving to default config - retroarch: drop libXv dep for x11 build (pkg was removed) - ppsspp: drop old patch - snes9x2002: dropped ARM_ASM=1 from make options for RPi0/1 - fbalpha2012: add buildfix patch - yabasanshiro: dropped patch for RPi5 merged upstream - yabasanshiro: added patch with function declaration - yabasanshiro: re-enable for most targets
30 lines
785 B
Makefile
30 lines
785 B
Makefile
PKG_NAME="lutro"
|
|
PKG_VERSION="e077129d7ade969e9a4f079389c66d4d278faa2e"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/libretro/libretro-lutro"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="An experimental lua game framework for libretro inspired by LÖVE"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="HAVE_COMPOSITION=1"
|
|
|
|
if target_has_feature neon; then
|
|
PKG_MAKE_OPTS_TARGET+=" HAVE_NEON=1"
|
|
fi
|
|
|
|
if [ "${ARCH}" = "x86_64" -o "${ARCH}" = "aarm64" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" PTR_SIZE=-m64"
|
|
else
|
|
PKG_MAKE_OPTS_TARGET+=" PTR_SIZE=-m32"
|
|
fi
|
|
|
|
pre_make_target() {
|
|
PKG_MAKE_OPTS_TARGET+=" HOST_CC=${HOST_CC} CROSS=${TARGET_PREFIX}"
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v lutro_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|