blob: 36864b7120fd07a5bfaedd91821e9aaadd8cf810 (
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
|
# Maintainer: Rafael Fontenelle <rafaelff@gnome.org>
pkgname=ddnet
pkgver=12.2
pkgrel=1
pkgdesc="DDraceNetwork, a cooperative racing mod of Teeworlds"
arch=('x86_64')
url="https://ddnet.tw"
license=('custom:BSD' 'CCPL:by-nc-sa')
depends=('sdl2' 'freetype2' 'opusfile' 'curl' 'glew' 'wavpack' 'libwebsockets' 'pnglite')
makedepends=('cmake' 'ninja' 'python' 'imagemagick' 'gendesk')
checkdepends=('gtest')
optdepends=('ddnet-skins: more skins for your tee'
'ddnet-maps-git: have all DDNet maps available offline')
source=("https://ddnet.tw/downloads/DDNet-$pkgver.tar.xz")
sha256sums=('6259622958d9e13c10c472e2f6b9fdcd6ff743167d433e1dc43fc684fe2fd412')
# Set 1 to enable MySQL support and add dependencies
_enable_mysql=0
if [ $_enable_mysql -eq 1 ]; then
depends+=('mysql-connector-c++')
makedepends+=('boost')
_mysql_opt="-DMYSQL=ON"
fi
prepare() {
[ -d build ] && rm -rf build; mkdir build
[ -d prep ] && rm -rf prep; mkdir prep
cd prep
# Extract icons in .png from .ico (name must be lowercase)
convert ../DDNet-$pkgver/other/icons/DDNet-Server.ico ddnet-server.png
convert ../DDNet-$pkgver/other/icons/DDNet.ico ddnet.png
# Generate .desktop files
gendesk --pkgname="DDNet" --pkgdesc="DDNet" \
--icon="ddnet" --categories="Game;ArcadeGame" \
--mimetypes="x-scheme-handler/ddnet" \
--exec="DDNet %u"
gendesk --pkgname="DDNet-Server" --name="DDNet Server" \
--pkgdesc="DDNet Server" --terminal=true \
--icon="ddnet-server" --categories="Game;ArcadeGame" \
--exec='sh -c "cd /usr/share/ddnet/data && DDNet-Server"'
# Create icon files' structure, for installing in package(). How:
# For each png file, check its dimensions (e.g. 128 x 128) using
# the output of 'file' command. Then double-check the 's' as a
# number, then install it into a "size/filename.png" notation
for f in ddnet-?.png ddnet-server-?.png; do
s=$(file $f | cut -d' ' -f5)
if [ ! -z "${s##*[!0-9]*}" ]; then
install -Dm644 $f ${s}x${s}/apps/${f/-[0-9]/}
rm $f
fi
done
}
build() {
cd build
cmake ../DDNet-$pkgver \
-DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DWEBSOCKETS=ON \
-DAUTOUPDATE=OFF \
-GNinja \
$_mysql_opt
ninja
}
check() {
ninja run_tests -C build
}
package() {
DESTDIR="$pkgdir" ninja install -C build
# Install desktop files and folder
install -dvm755 "$pkgdir/usr/share/applications/"
install -vm644 prep/DDNet.desktop "$pkgdir/usr/share/applications/"
install -vm644 prep/DDNet-Server.desktop "$pkgdir/usr/share/applications/"
# Install icon files and folders
for f in $(find prep -type f -name '*.png'); do
install -Dvm644 $f "$pkgdir/usr/share/icons/hicolor"/${f/prep\/}
done
# Install license file
install -dm755 "$pkgdir/usr/share/licenses/$pkgname/"
install -vm644 DDNet-$pkgver/license.txt "$pkgdir/usr/share/licenses/$pkgname/"
}
|