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
37 lines
951 B
Makefile
37 lines
951 B
Makefile
PKG_NAME="vecx"
|
|
PKG_VERSION="141af284202c86ed0d4ce9030c76954a144287cf"
|
|
PKG_LICENSE="GPLv2|LGPLv2.1"
|
|
PKG_SITE="https://github.com/libretro/libretro-vecx"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="libretro adaptation of vecx"
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="-f Makefile.libretro"
|
|
|
|
if [ "${OPENGL_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL}"
|
|
fi
|
|
|
|
if [ "${OPENGLES_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGLES}"
|
|
fi
|
|
|
|
if [ "${VULKAN_SUPPORT}" = "yes" ]; then
|
|
PKG_DEPENDS_TARGET+=" ${VULKAN}"
|
|
fi
|
|
|
|
if [ "${PROJECT}" = "RPi" ]; then
|
|
if [ "${OPENGLES}" = "mesa" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" platform=rpi-mesa"
|
|
else
|
|
PKG_MAKE_OPTS_TARGET+=" platform=rpi"
|
|
fi
|
|
elif [ "${OPENGLES_SUPPORT}" = "yes" ]; then
|
|
PKG_MAKE_OPTS_TARGET+=" HAS_GLES=1 GLES=1"
|
|
fi
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v vecx_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|