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
46 lines
1.2 KiB
Makefile
46 lines
1.2 KiB
Makefile
PKG_NAME="kronos"
|
|
PKG_VERSION="58352d6dc969fa90c5fa1220f38ffe577157547f"
|
|
PKG_LICENSE="GPLv2"
|
|
PKG_SITE="https://github.com/FCare/Kronos"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Port of Kronos to libretro."
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="-C ../yabause/src/libretro HAVE_CDROM=1"
|
|
|
|
if [ "${OPENGL_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL}"
|
|
PKG_MAKE_OPTS_TARGET+=" HAVE_OPENGL=1"
|
|
fi
|
|
|
|
if [ "${OPENGLES_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
|
PKG_MAKE_OPTS_TARGET+=" FORCE_GLES=1"
|
|
fi
|
|
|
|
if [ "${VULKAN_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${VULKAN}"
|
|
fi
|
|
|
|
if [ "${ARCH}" = "arm" ]; then
|
|
if [ "${PROJECT}" = "Samsung" -a "${DEVICE}" = "Exynos" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" platform=odroid BOARD=ODROID-XU4"
|
|
else
|
|
PKG_MAKE_OPTS_TARGET+=" platform=armv"
|
|
fi
|
|
elif [ "${ARCH}" = "aarch64" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" platform=arm64"
|
|
fi
|
|
|
|
pre_make_target() {
|
|
mkdir ${PKG_BUILD}/build_retro
|
|
cd ${PKG_BUILD}/build_retro
|
|
make ${PKG_MAKE_OPTS_TARGET} generate-files
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v ../yabause/src/libretro/kronos_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|