2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2018-present Team LibreELEC (https://libreelec.tv)
PKG_NAME = "lzdoom"
2022-02-07 01:09:44 +00:00
PKG_VERSION = "f8b3a07637d4a0d8c8cd72a66b8e75ee61d92d16"
2022-02-05 14:23:32 +00:00
PKG_LICENSE = "GPL"
PKG_SITE = "https://github.com/351ELEC/lzdoom"
PKG_URL = " ${ PKG_SITE } .git "
PKG_DEPENDS_TARGET = "toolchain SDL2 lzdoom:host"
PKG_SHORTDESC = "LZDoom"
PKG_LONGDESC = "ZDoom is a family of enhanced ports of the Doom engine for running on modern operating systems. It runs on Windows, Linux, and OS X, and adds new features not found in the games as originally published by id Software."
GET_HANDLER_SUPPORT = "git"
PKG_TOOLCHAIN = "cmake-make"
2022-02-12 22:49:55 +00:00
PKG_PATCH_DIRS += " ${ DEVICE } "
2022-02-05 14:23:32 +00:00
p r e _ b u i l d _ h o s t ( ) {
HOST_CMAKE_OPTS = ""
}
m a k e _ h o s t ( ) {
cmake . -DNO_GTK= ON
make
}
m a k e i n s t a l l _ h o s t ( ) {
: #no
}
p r e _ c o n f i g u r e _ t a r g e t ( ) {
PKG_CMAKE_OPTS_TARGET = " -DNO_GTK=ON \
-DFORCE_CROSSCOMPILE= ON \
-DIMPORT_EXECUTABLES= $PKG_BUILD /.$HOST_NAME /ImportExecutables.cmake \
-DCMAKE_BUILD_TYPE= Release"
}
m a k e i n s t a l l _ t a r g e t ( ) {
mkdir -p $INSTALL /usr/bin
cp $PKG_DIR /lzdoom.sh $INSTALL /usr/bin/
cp $PKG_BUILD /.$TARGET_NAME /lzdoom $INSTALL /usr/bin
2022-02-27 02:40:30 +00:00
mkdir -p $INSTALL /usr/config/game/lzdoom
cp $PKG_DIR /config/${ DEVICE } /* $INSTALL /usr/config/game/lzdoom
cp $PKG_BUILD /.$TARGET_NAME /*.pk3 $INSTALL /usr/config/game/lzdoom
cp -r $PKG_BUILD /.$TARGET_NAME /soundfonts $INSTALL /usr/config/game/lzdoom
cp -r $PKG_BUILD /.$TARGET_NAME /fm_banks $INSTALL /usr/config/game/lzdoom
2022-02-05 14:23:32 +00:00
}