mirror of
https://github.com/libretro/Lakka-LibreELEC.git
synced 2024-11-25 10:46:19 +00:00
8833effeff
- update RetroArch to 1.18.0 (will need to be updated later) - update cores to latest - update assets, info, shaders, overlays, database - leave kronos only for Generic.x86_64 and x11.x86_64 - putt back some RetroArch changes (shutdown/restart, path) - get_git: use PKG_ var for skipping submodules
23 lines
709 B
Makefile
23 lines
709 B
Makefile
PKG_NAME="ecwolf"
|
|
PKG_VERSION="71ec64cf98ba0a2a94e2fede560f1b435761b36d"
|
|
PKG_LICENSE="Unknown"
|
|
PKG_SITE="https://github.com/libretro/ecwolf"
|
|
PKG_URL="${PKG_SITE}.git"
|
|
PKG_DEPENDS_TARGET="toolchain"
|
|
PKG_SHORTDESC="ECWolf is a port of the Wolfenstein 3D engine based of Wolf4SDL."
|
|
PKG_TOOLCHAIN="make"
|
|
|
|
PKG_MAKE_OPTS_TARGET="-C src/libretro"
|
|
|
|
pre_make_target() {
|
|
cd ${PKG_BUILD}
|
|
}
|
|
|
|
makeinstall_target() {
|
|
mkdir -p ${INSTALL}/usr/lib/libretro
|
|
cp src/libretro/ecwolf_libretro.so ${INSTALL}/usr/lib/libretro/
|
|
mkdir -p ${INSTALL}/usr/share/retroarch/system
|
|
echo "Packaging ecwolf.pk3..."
|
|
7z a -mx9 -tzip ${INSTALL}/usr/share/retroarch/system/ecwolf.pk3 "${PKG_BUILD}/wadsrc/static/"* >/dev/null
|
|
}
|