mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04: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
17 lines
592 B
Makefile
17 lines
592 B
Makefile
PKG_NAME="liblcf"
|
|
PKG_VERSION="34db5415e5a1c40bb89253cf473d4e98cc6e348a"
|
|
PKG_ARCH="any"
|
|
PKG_LICENSE="MIT"
|
|
PKG_SITE="https://github.com/EasyRPG/liblcf"
|
|
PKG_URL="${PKG_SITE}/archive/${PKG_VERSION}.tar.gz"
|
|
PKG_DEPENDS_TARGET="toolchain expat icu libinih"
|
|
PKG_SECTION="devel"
|
|
PKG_LONGDESC="Library to handle RPG Maker 2000/2003 and EasyRPG projects"
|
|
PKG_TOOLCHAIN="cmake"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DCMAKE_BUILD_TYPE=Release"
|
|
|
|
pre_make_target() {
|
|
find ${PKG_BUILD} -name flags.make -exec sed -i "s:isystem :I:g" \{} \;
|
|
find ${PKG_BUILD} -name build.ninja -exec sed -i "s:isystem :I:g" \{} \;
|
|
}
|