ac68ea01a5
The resulting 0ad-32bit package only contains internal libraries used by the game.
59 lines
1.9 KiB
Bash
59 lines
1.9 KiB
Bash
# Template file for '0ad'
|
|
pkgname=0ad
|
|
version=0.0.24b
|
|
revision=2
|
|
archs="x86_64* i686* aarch64* armv7l* ppc64le*"
|
|
wrksrc="${pkgname}-${version}-alpha"
|
|
hostmakedepends="pkg-config perl cmake python3 rust cargo yasm tar clang"
|
|
makedepends="SDL2-devel boost-devel gloox-devel libcurl-devel libenet-devel
|
|
libopenal-devel libpng-devel libsodium-devel libxml2-devel miniupnpc-devel
|
|
nspr-devel wxWidgets-gtk3-devel fmt-devel"
|
|
depends="${pkgname}-data"
|
|
short_desc="Historically-based real-time strategy game"
|
|
maintainer="Helmut Pozimski <helmut@pozimski.eu>"
|
|
license="GPL-2.0-or-later, CC-BY-SA-3.0, MPL-2.0, MIT"
|
|
homepage="https://play0ad.com"
|
|
distfiles="https://releases.wildfiregames.com/${pkgname}-${version}-alpha-unix-build.tar.xz"
|
|
checksum=325c23c9b6bfc16eb636af6a7a7bdaadbf19214b6eed0422d74cc0090bf137a8
|
|
nocross="uses bundled third-party libraries that do not cross-compile"
|
|
lib32disabled=yes
|
|
|
|
CXXFLAGS="-fpermissive"
|
|
# Use BFD linker to avoid erroneous detection of llvm pr8927 with *-musl
|
|
LDFLAGS="-fuse-ld=bfd"
|
|
|
|
export WX_CONFIG="wx-config-gtk3"
|
|
|
|
if [ "$XBPS_TARGET_LIBC" = musl ]; then
|
|
makedepends+=" libexecinfo-devel"
|
|
fi
|
|
|
|
post_patch() {
|
|
if [ "$XBPS_TARGET_LIBC" = "musl" ]; then
|
|
echo "TARGET_LINK_LIBRARIES(nvcore execinfo)" >> \
|
|
libraries/source/nvtt/src/src/nvcore/CMakeLists.txt
|
|
fi
|
|
}
|
|
|
|
do_configure() {
|
|
cd ${wrksrc}/build/workspaces
|
|
./clean-workspaces.sh
|
|
./update-workspaces.sh --bindir=/usr/bin --libdir=/usr/lib/0ad \
|
|
--datadir=/usr/share/${pkgname}/data
|
|
}
|
|
|
|
do_build() {
|
|
make config=release -C build/workspaces/gcc ${makejobs}
|
|
}
|
|
|
|
do_install() {
|
|
vbin binaries/system/pyrogenesis
|
|
vmkdir usr/lib/${pkgname}
|
|
vcopy binaries/system/*.so usr/lib/${pkgname}
|
|
vmkdir usr/share/${pkgname}/data
|
|
vcopy binaries/data/l10n usr/share/${pkgname}/data
|
|
vbin build/resources/${pkgname}.sh ${pkgname}
|
|
vinstall build/resources/${pkgname}.desktop 0644 usr/share/applications
|
|
vinstall build/resources/${pkgname}.png 0644 usr/share/pixmaps
|
|
vlicense LICENSE.txt
|
|
}
|