mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
- update RetroArch to 1.10.2 and drop patch merged upstream - RetroArch: disable core system files downloader (included in image) - update almost all cores to their latest version - drop duckstation core - modify libretro_update.sh script to allow for updates to latest tagged commit - modify some packages to use latest tag during automated update - update liblcf to 0.7.0 (EasyRPG dependency) and drop patches - do not rename `genesis_plus_gx_wide_libretro.so` to `genesis_plus_gx_libretro.so` in the install path
17 lines
584 B
Makefile
17 lines
584 B
Makefile
PKG_NAME="liblcf"
|
|
PKG_VERSION="01b73de93cf80185fcdf3ffd4737dfdb9111a85e"
|
|
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"
|
|
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" \{} \;
|
|
}
|