blob: 2a0babb957a7e1341400f3c4c55882f71e08f398 (
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
|
# Contributor: carstene1ns <arch carsten-teibes de> - http://git.io/ctPKG
pkgname=cdogs-git
pkgver=1.5.0.r25.g81b19746
pkgrel=1
pkgdesc='SDL port of DOS arcade game C-Dogs (aka "Cyberdogs 2", development version)'
arch=('i686' 'x86_64')
url="http://cxong.github.io/cdogs-sdl/"
license=('GPL2')
depends=('sdl_mixer' 'sdl_image' 'physfs')
makedepends=('git' 'cmake')
conflicts=('cdogs')
provides=('cdogs')
source=(cdogs::"git+https://github.com/cxong/cdogs-sdl.git"
"git+https://github.com/cxong/hqx.git"
"git+https://github.com/cxong/cbehave.git"
"git+https://github.com/cxong/rlutil.git"
"git+https://github.com/cxong/tinydir.git")
md5sums=('SKIP' 'SKIP' 'SKIP' 'SKIP' 'SKIP')
pkgver() {
cd cdogs
git describe --long --tags | sed -r 's/([^-]*-g)/r\1/;s/-/./g'
}
prepare() {
cd cdogs
# disable -Werror (aborts build) and change data directory
sed 's| -Werror||;s|CDOGS_DATA_DIR "../"|CDOGS_DATA_DIR "/usr/share/cdogs/"|' \
-i CMakeLists.txt
# change name in .desktop file
sed 's|cdogs-sdl|cdogs|g' -i build/linux/io.github.cxong.cdogs-sdl.desktop
# submodules magic
git submodule init
git config submodule.src/cdogs/hqx.url "$srcdir"/hqx
git config submodule.src/tinydir.url "$srcdir"/tinydir
git config submodule.src/tests/cbehave.url "$srcdir"/cbehave
git submodule update
cd src/tests/cbehave
git config submodule.rlutil.url "$srcdir"/rlutil
git submodule update
}
build() {
cd cdogs
cmake ./
make
}
package() {
cd cdogs
# binary
install -Dm755 src/cdogs-sdl "$pkgdir"/usr/bin/cdogs
# data
install -d "$pkgdir"/usr/share/cdogs
cp -r data doc dogfights graphics missions music sounds "$pkgdir"/usr/share/cdogs
# doc
install -d "$pkgdir"/usr/share/doc
ln -s /usr/share/cdogs/doc "$pkgdir"/usr/share/doc/cdogs
# .desktop entry
install -Dm644 build/linux/cdogs-icon.48.png "$pkgdir"/usr/share/pixmaps/cdogs.png
install -Dm644 build/linux/io.github.cxong.cdogs-sdl.desktop "$pkgdir"/usr/share/applications/io.github.cxong.cdogs-sdl.desktop
}
|