blob: fcd17fd8aff00b083b44d4c5872acc298fb4241b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
|
# Maintainer: tuxayo <victor (replace by @) tuxayo DOT net>
# Maintainer: Michał Wojdyła < micwoj9292 at gmail dot com >
# Contributor: Brenton Horne <brentonhorne77 at gmail dot com>
# Contributor: Sven-Hendrik Haase <svenstaro@archlinux.org>
# Contributor: t3ddy <t3ddy1988 "at" gmail {dot} com>
# Contributor: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
pkgname=('0ad-git' '0ad-data-git')
_pkgname=0ad
epoch=1
pkgver=a26.r957.g6d12d25348
pkgrel=1
pkgdesc="Cross-platform, 3D and historically-based real-time strategy game - built from git development version."
arch=('i686' 'x86_64')
url="https://play0ad.com"
license=('GPL-2.0-or-later' 'LicenseRef-CCPL')
makedepends=('boost' 'cmake' 'mesa' 'zip' 'libsm' 'rust' 'git'
'enet' 'fmt' 'gloox' 'libminiupnpc.so'
'libpng' 'libsodium' 'libvorbis' 'miniupnpc' 'openal'
'sdl2' 'wxwidgets-gtk3' 'which' 'subversion' 'makepkg-git-lfs-proto')
options=('!lto' '!debug') # lto breaks spidermonkey linking (https://bugs.gentoo.org/746947)
source=(
"git-lfs+https://gitea.wildfiregames.com/0ad/0ad"
"patch.patch"
https://www.python.org/ftp/python/3.11.10/Python-3.11.10.tar.xz{,.asc}
)
validpgpkeys=('A035C8C19219BA821ECEA86B64E628F8D684696D') # Pablo Galindo Salgado <pablogsal@gmail.com>
md5sums=(
'SKIP'
'0c789b7aa65258125a488c857e3fb74b'
'af59e243df4c7019f941ae51891c10bc'
'SKIP'
)
pkgver() {
cd ${_pkgname}
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "$srcdir/${_pkgname}"
patch -p1 -i ../patch.patch # Fix build with GCC 14
}
build() {
# https://gitea.wildfiregames.com/0ad/0ad/issues/6895
cd Python-3.11.10
./configure
make
make DESTDIR="$srcdir/pythoninstall" install
cd ..
PATH="$PWD/pythoninstall/usr/local/bin:$PATH"
cd pythoninstall/usr/local/bin/
# Why is this not done by default...
ln -s python3 python
# this uses malloc_usable_size, which is incompatible with fortification level 3
export CFLAGS="${CFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
export CXXFLAGS="${CXXFLAGS/_FORTIFY_SOURCE=3/_FORTIFY_SOURCE=2}"
cd "$srcdir/${_pkgname}/libraries"
./build-source-libs.sh
cd "$srcdir/${_pkgname}/build/workspaces"
./update-workspaces.sh \
--without-pch \
--bindir=/usr/bin \
--libdir=/usr/lib/0ad \
--datadir=/usr/share/${pkgname}/data
# cd "$srcdir/${_pkgname}/libraries/source/fcollada/src"
# make # always keep uncommented
# # OPTIONAL: uncomment for a debug build, it's a 2nd executable named
# # `pyrogenesis_dbg`
# # It's independent from the debug symbols and not as important as them.
# # https://trac.wildfiregames.com/wiki/Debugging#CallstackonLinuxmacOS
# # It's likely a small increase of build time.
# # And up to a 1.2 GiB in total used space. (inc. package build files)
# # Note there is something else to uncomment below in package_0ad-git()
# # make config=debug
cd gcc
VERBOSE=1 make # always keep uncommented
# OPTIONAL: uncomment for a debug build, see above
# make config=debug
}
package_0ad-git() {
depends=('0ad-data' 'boost-libs' 'curl' 'enet' 'libpng' 'libvorbis'
'libxml2' 'openal' 'sdl2' 'wxwidgets-gtk3' 'zlib' 'fmt'
'gloox' 'miniupnpc' 'libminiupnpc.so' 'icu' 'libsodium' 'which')
conflicts=('0ad')
provides=('0ad')
install -d "${pkgdir}"/usr/{bin,lib/0ad,share/"${_pkgname}"/data}
cd "$srcdir/${_pkgname}"
install -Dm755 binaries/system/pyrogenesis "${pkgdir}/usr/bin"
# OPTIONAL: uncomment below for debug build. See the comments around the `make` calls
#install -Dm755 binaries/system/pyrogenesis_dbg "${pkgdir}/usr/bin"
install -Dm755 binaries/system/*.so "${pkgdir}/usr/lib/0ad"
cp -r binaries/data/l10n/ "${pkgdir}/usr/share/${_pkgname}/data/"
install -Dm755 build/resources/${_pkgname}.sh "${pkgdir}/usr/bin/${_pkgname}"
install -Dm644 build/resources/${_pkgname}.desktop "${pkgdir}/usr/share/applications/${_pkgname}.desktop"
install -Dm644 build/resources/${_pkgname}.png "${pkgdir}/usr/share/pixmaps/${_pkgname}.png"
}
package_0ad-data-git() {
pkgdesc="Data package for 0ad built from git development version."
conflicts=('0ad-data')
provides=('0ad-data')
mkdir -p ${pkgdir}/usr/share/${_pkgname}-git
cd "$srcdir/${_pkgname}"
cp -r "binaries/data" "${pkgdir}/usr/share/${_pkgname}-git"
}
|