blob: c9fa2ff3d397bf9ae02868fdda71f769d105397c (
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
|
# $Id: PKGBUILD 29214 2010-10-11 15:58:28Z svenstaro $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Daniel J Griffiths <ghost1227@archlinux.us>
pkgname=openlierox
pkgver=0.58_rc3
pkgrel=2
pkgdesc="A real-time excessive Worms-clone"
arch=('i686' 'x86_64')
url="http://www.openlierox.net/"
license=('LGPL')
depends=('curl' 'gcc-libs' 'sdl_image' 'sdl_mixer' 'gd' 'hawknl' 'libxml2' 'libzip')
makedepends=('cmake')
optdepends=('bash: for scripts support'
'python: for scripts support')
conflicts=('openlierox-beta' 'openlierox-svn')
source=(http://downloads.sourceforge.net/$pkgname/OpenLieroX_$pkgver.src.tar.bz2)
md5sums=('c4f7057d8f210e30bdef3cfdd75d613b')
build() {
cd "$srcdir"/OpenLieroX
sed -i '1i #include <sys/stat.h>' src/breakpad/external/src/common/linux/file_id.cc
sed -i 's|/usr/share/games|/usr/share|g' include/FindFile.h
[[ -d build ]] && rm -r build
mkdir build
cmake -DCMAKE_BUILD_TYPE=Release \
-DCMAKE_INSTALL_PREFIX=/usr \
-DSYSTEM_DATA_DIR=/usr/share \
-DHAWKNL_BUILTIN=OFF \
-DBREAKPAD=OFF
make
}
package() {
cd "$srcdir"/OpenLieroX
# Awesome, they are using CMake but they do not want it to also make the install.
# install binary
install -Dm755 bin/$pkgname "$pkgdir"/usr/bin/$pkgname
# install data
install -m755 -d "$pkgdir"/usr/share/OpenLieroX
cp -r share/gamedir/* "$pkgdir"/usr/share/OpenLieroX/
find "$pkgdir"/usr/share/OpenLieroX -type d -exec chmod 755 {} +
find "$pkgdir"/usr/share/OpenLieroX -type f -exec chmod 644 {} +
# install manual
install -Dm644 doc/$pkgname.6 "$pkgdir"/usr/share/man/man6/$pkgname.6
# install icon
install -Dm644 share/OpenLieroX.svg \
"$pkgdir"/usr/share/pixmaps/OpenLieroX.svg
# install .desktop file
install -Dm644 share/$pkgname-$pkgname.desktop \
"$pkgdir"/usr/share/applications/$pkgname.desktop
}
|