mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2025-04-02 10:41:46 -04:00
- update RetroArch to 1.10.3 - remove RetroArch patches merged upstream - update cores - vice: remove buildfix patch - fuse_libretro: add flags/define for bzip2 and dependency - mame2010: add database - mame2015: add database - update databases/assets/shaders/joypads
29 lines
832 B
Makefile
29 lines
832 B
Makefile
PKG_NAME="pcsx2"
|
|
PKG_VERSION="0251730a21d7238856d79aa25e2942b48edb38f6"
|
|
PKG_ARCH="x86_64"
|
|
PKG_LICENSE="GPLv2"
|
|
PKG_SITE="https://github.com/libretro/pcsx2"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="libaio toolchain xz"
|
|
PKG_LONGDESC="PCSX2 is a free and open-source PlayStation 2 (PS2) emulator"
|
|
PKG_TOOLCHAIN="cmake"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DLIBRETRO=ON \
|
|
-DENABLE_QT=OFF \
|
|
-DCMAKE_BUILD_TYPE=Release"
|
|
|
|
if [ "${OPENGL_SUPPORT}" = yes ]; then
|
|
PKG_DEPENDS_TARGET+=" ${OPENGL}"
|
|
fi
|
|
|
|
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" \{} \;
|
|
}
|
|
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v pcsx2/pcsx2_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
}
|
|
|