following cores were not updated and removed from build, as they fail to build with old as well as updated: - citra - dolphin - easyrpg - mame - mupen64plus_next - pcsx2 - ppsspp - same_cdi build tested only for Generic.x86_64
20 lines
657 B
Makefile
20 lines
657 B
Makefile
PKG_NAME="dirksimple"
|
|
PKG_VERSION="28ea51d4ab39ffc57218f481a9876bd26f2d15a3"
|
|
PKG_LICENSE="Zlib"
|
|
PKG_SITE="https://github.com/icculus/DirkSimple"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_LONGDESC="Libretro core of dirt-simple Dragon's Lair player"
|
|
PKG_TOOLCHAIN="cmake"
|
|
|
|
PKG_CMAKE_OPTS_TARGET="-DLIBRETRO=ON"
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp -v dirksimple_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
cp -v ../dirksimple_libretro.info ${INSTALL}/usr/lib/libretro/
|
|
|
|
mkdir -p ${INSTALL}/usr/share/retroarch/system/DirkSimple
|
|
cp -vr ../data/games ${INSTALL}/usr/share/retroarch/system/DirkSimple
|
|
}
|