blob: 1b90e8040fa0905a3f5a719f407413731fd5ddb3 (
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
116
117
118
119
120
121
122
123
124
|
# Maintainer: Erich Eckner <arch at eckner dot net>
pkgname=openttd-git
pkgver=28838.01f957c51
_commit=${pkgver#*.}
pkgrel=1
pkgdesc="A FOSS clone of Transport Tycoon Deluxe."
arch=('x86_64' 'i686')
url="http://www.openttd.org"
license=('GPL2')
groups=()
depends=(
'fluidsynth'
'fontconfig'
'hicolor-icon-theme'
'icu'
'libpng'
'lzo'
'sdl'
'xz'
)
makedepends=('subversion')
checkdepends=(
'openttd-opengfx'
)
optdepends=(
'openttd-opengfx: free graphics'
'openttd-opensfx: free soundset'
'openttd-openmsx: free music'
)
provides=('openttd')
conflicts=('openttd')
replaces=()
backup=()
options=()
source=(
"${pkgname}::git://github.com/OpenTTD/OpenTTD.git#commit=${_commit}"
"signaltunnel.patch"
"sloped-stations.patch"
"underground.patch"
)
sha512sums=('SKIP'
'70984c48524ebc913c1f8e91d0495afcec7707b93ec6e307081ba7b71acfad0d401bcfc57d79f85500eb6968d53b5fd85ee0b4982e9ae68c9c79f279095df687'
'2977b0b72cef96ec86d5351d15b4b9951d2b62a412e8a4d2501ca0d88b2f0962a63ec4e7657df24c5646f86c13409ddb4b915b74db95c27de96ff6ad47be8168'
'79a910637174a67f28b6b5d88e3f17949e2d866a1f5c24b389e2fdc46490b82aba916a492ecaf2f4e32461168578d0524c83ccc3136b5cdb116d8ecef34338d1')
pkgver() {
printf '%s.%s\n' \
"$((
$(git -C "${srcdir}/${pkgname}" rev-list --count "${_commit}" ^f84ad5f7c) + 28004
))" \
"$(
git -C "${srcdir}/${pkgname}" rev-parse --short=9 "${_commit}"
)"
}
prepare() {
cd "${srcdir}/${pkgname}"
ISODATE=$(
date -d@$(
git log -n1 --pretty=format:%ct
) +'%Y%m%d'
)
HASH=$(find {src,bin} -type f -exec sha512sum {} \; | sort | sha512sum - | cut -d' ' -f1)
SHORTHASH=$(echo ${HASH} | cut -c1-8)
printf '%s\t%s\t%s\t%s\t%s\t%s\n' \
"${ISODATE}-ewe-g${SHORTHASH}" \
"${ISODATE}" \
"0" \
"${HASH}" \
"0" \
"0" \
> .ottdrev
sed -i '
s,"\$ROOT_DIR/\.git","/dev/does/not/exist",
' findversion.sh
for _p in "${srcdir}/"{signaltunnel,sloped-stations,underground}.patch; do
>&2 echo "patching ${_p##*/} ..."
patch -p1 -i "${_p}"
>&2 echo "... ok"
done
sed -i '
s/readme\.txt/README.md/g
' Makefile.bundle.in
}
build() {
cd "${srcdir}/${pkgname}"
./configure ${_targetHost} \
--prefix-dir=/usr \
--binary-dir=bin \
--data-dir=share/openttd \
--icon-dir=share/openttd \
--man-dir=share/man \
--personal-dir=.openttd \
--install-dir=$pkgdir
make
}
check() {
cd "${srcdir}/${pkgname}"
make test || true
}
package() {
cd "${srcdir}/${pkgname}"
make DESTDIR=$pkgdir install
# Remove unnecessary languages
cp $pkgdir/usr/share/openttd/lang/{english,german}.lng $srcdir
rm $pkgdir/usr/share/openttd/lang/*
install -m 644 $srcdir/{english,german}.lng $pkgdir/usr/share/openttd/lang
# Remove junk
rm -rf $pkgdir/usr/share/doc
rm -rf $pkgdir/usr/share/openttd/scripts
}
|