distribution/packages/games/emulators/raze/package.mk

67 lines
2.5 KiB
Makefile
Raw Normal View History

2022-02-05 14:23:32 +00:00
# SPDX-License-Identifier: GPL-2.0
# Copyright (C) 2021-present 351ELEC (https://github.com/351ELEC)
# Copyright (C) 2022-present Fewtarius
2022-02-05 14:23:32 +00:00
PKG_NAME="raze"
2022-08-22 21:02:24 +00:00
PKG_VERSION="1c0c41e88d5521fbdf5cd5ae1eb2f7de073036ab"
2022-02-05 14:23:32 +00:00
PKG_LICENSE="GPL"
PKG_SITE="https://github.com/coelckers/Raze"
2022-02-05 14:23:32 +00:00
PKG_URL="${PKG_SITE}.git"
PKG_DEPENDS_TARGET="toolchain SDL2 raze:host zmusic libvpx"
PKG_SHORTDESC="Raze is a fork of Build engine games backed by GZDoom tech and combines Duke Nukem 3D, Blood, Redneck Rampage, Shadow Warrior and Exhumed/Powerslave in a single package."
PKG_LONGDESC="Raze is a fork of Build engine games backed by GZDoom tech and combines Duke Nukem 3D, Blood, Redneck Rampage, Shadow Warrior and Exhumed/Powerslave in a single package."
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
pre_build_host() {
HOST_CMAKE_OPTS=""
}
make_host() {
cmake . -DNO_GTK=ON
make
}
makeinstall_host() {
: #no
}
pre_configure_host(){
PKG_CMAKE_OPTS_HOST=" -DZMUSIC_LIBRARIES=$(get_build_dir zmusic)/build_host/source/libzmusic.so \
-DZMUSIC_INCLUDE_DIR=$(get_build_dir zmusic)/include"
}
pre_configure_target() {
PKG_CMAKE_OPTS_TARGET=" -DNO_GTK=ON \
-DFORCE_CROSSCOMPILE=ON \
2022-03-31 11:34:01 +00:00
-DIMPORT_EXECUTABLES=${PKG_BUILD}/.${HOST_NAME}/ImportExecutables.cmake \
2022-02-05 14:23:32 +00:00
-DCMAKE_BUILD_TYPE=Release \
-DHAVE_GLES2=ON \
-DHAVE_VULKAN=OFF \
-DZMUSIC_LIBRARIES=$(get_build_dir zmusic)/build_target/source/libzmusic.so -DZMUSIC_INCLUDE_DIR=$(get_build_dir zmusic)/include"
}
makeinstall_target() {
2022-03-31 11:34:01 +00:00
mkdir -p ${INSTALL}/usr/bin
cp ${PKG_DIR}/sources/start_raze.sh ${INSTALL}/usr/bin/
2022-03-31 11:34:01 +00:00
cp ${PKG_BUILD}/.${TARGET_NAME}/raze ${INSTALL}/usr/bin
chmod 0755 ${INSTALL}/usr/bin/*
2022-03-31 11:34:01 +00:00
mkdir -p ${INSTALL}/usr/config/game/raze
cp -rf ${PKG_DIR}/config/common/* ${INSTALL}/usr/config/game/raze
2022-08-19 01:37:51 +00:00
chmod 0755 ${INSTALL}/usr/config/game/raze/games/*sh
2022-03-31 11:34:01 +00:00
if [ -d "${PKG_DIR}/config/${DEVICE}" ]
then
cp -rf ${PKG_DIR}/config/${DEVICE}/* ${INSTALL}/usr/config/game/raze
cat ${INSTALL}/usr/config/game/raze/defaults.ini >> ${INSTALL}/usr/config/game/raze/raze.ini
2022-08-20 14:53:10 +00:00
rm ${INSTALL}/usr/config/game/raze/defaults.ini
2022-03-31 11:34:01 +00:00
fi
cp ${PKG_BUILD}/.${TARGET_NAME}/*.pk3 ${INSTALL}/usr/config/game/raze
cp -r ${PKG_BUILD}/.${TARGET_NAME}/soundfonts ${INSTALL}/usr/config/game/raze
2022-08-19 08:24:09 +00:00
mkdir -p ${INSTALL}/usr/lib/autostart/common
cp ${PKG_DIR}/sources/autostart/common/* ${INSTALL}/usr/lib/autostart/common
2022-02-05 14:23:32 +00:00
}