32 lines
1.1 KiB
Bash
32 lines
1.1 KiB
Bash
# Template file for 'openra'
|
|
pkgname=openra
|
|
version=20231010
|
|
revision=1
|
|
build_style="gnu-makefile"
|
|
make_install_target="install install-linux-shortcuts install-linux-appdata"
|
|
make_build_args="RUNTIME=mono TARGETPLATFORM=unix-generic"
|
|
make_install_args="RUNTIME=mono TARGETPLATFORM=unix-generic"
|
|
make_check_args="RUNTIME=mono TARGETPLATFORM=unix-generic"
|
|
hostmakedepends="mono unzip curl msbuild-bin"
|
|
makedepends="SDL2-devel lua51-devel freetype-devel libopenal-devel libgdiplus-devel"
|
|
depends="mono libopenal freetype xdg-utils zenity SDL2 lua51 libgdiplus"
|
|
short_desc="Open-source implementation of the Red Alert engine"
|
|
maintainer="Orphaned <orphan@voidlinux.org>"
|
|
license="GPL-3.0-or-later"
|
|
homepage="http://www.openra.net"
|
|
distfiles="https://github.com/OpenRA/OpenRA/archive/release-${version}.tar.gz"
|
|
checksum=013d016f1b0e0cfe2f8e1acae6184cf1853fc702a5a6c5a7bd35b7e615f70498
|
|
|
|
if [ "$XBPS_ENDIAN" = "be" ]; then
|
|
broken="Fails to build"
|
|
fi
|
|
|
|
if [ "$CROSS_BUILD" ]; then
|
|
hostmakedepends+=" lua51 libgdiplus"
|
|
fi
|
|
|
|
pre_build() {
|
|
vsed -i -e "s#/app/lib#${XBPS_CROSS_BASE}/lib#g" configure-system-libraries.sh
|
|
make ${make_build_args} VERSION="release-${version}" version
|
|
}
|