blob: 67624016217cf792d11dea026d349098d050b52f (
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
|
# $Id$
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Alexander Suhoverhov <cy at ngs dot ru>
pkgname=xonotic
pkgver=0.1.0
pkgrel=2
pkgdesc="A free, fast-paced crossplatform first-person shooter"
arch=('i686' 'x86_64')
url="http://xonotic.org"
license=('GPL')
depends=('alsa-lib' 'curl' 'libjpeg>=8' 'libmodplug' 'libvorbis' 'libxpm' 'libxxf86dga' 'libxxf86vm' 'sdl' 'libpng>=1.4.0' 'xonotic-data')
makedepends=('unzip' 'mesa')
source=('http://dl.xonotic.org/xonotic-0.1.0preview.zip'
'xonotic-dedicated.sh'
'xonotic-glx.sh'
'xonotic-sdl.sh'
'xonotic-glx.desktop'
'xonotic-sdl.desktop')
md5sums=('aafb43893aa66e01488c817e3a60d96d'
'2c0aef8104fa34aef58d368d994abca3'
'd2f357eab92db585448476470bbf9c1c'
'fdb9b96cd2b700ea9e8a7d6a1ab3505e'
'914c7b9163e92b35f0ab57fdb1653ac5'
'da7d812ff231c9332cd694b39757adda')
build() {
# le compiling
cd $srcdir/Xonotic/source/darkplaces
# build the binaries separately instead to avoid truncated files
make CPUOPTIMIZATIONS="${CFLAGS}" DP_LINK_TO_LIBJPEG=1 cl-nexuiz
make CPUOPTIMIZATIONS="${CFLAGS}" DP_LINK_TO_LIBJPEG=1 sdl-nexuiz
make CPUOPTIMIZATIONS="${CFLAGS}" DP_LINK_TO_LIBJPEG=1 sv-nexuiz
}
package() {
cd $srcdir/Xonotic
# binaries
install -Dm755 source/darkplaces/nexuiz-dedicated $pkgdir/opt/xonotic/xonotic-dedicated
install -Dm755 source/darkplaces/nexuiz-glx $pkgdir/opt/xonotic/xonotic-glx
install -Dm755 source/darkplaces/nexuiz-sdl $pkgdir/opt/xonotic/xonotic-sdl
# convenience files
mkdir -p $pkgdir/usr/share/applications
install -Dm644 $srcdir/*.desktop -t $pkgdir/usr/share/applications
install -Dm755 $srcdir/xonotic-dedicated.sh $pkgdir/usr/bin/xonotic-dedicated
install -Dm755 $srcdir/xonotic-glx.sh $pkgdir/usr/bin/xonotic-glx
install -Dm755 $srcdir/xonotic-sdl.sh $pkgdir/usr/bin/xonotic-sdl
install -Dm644 $srcdir/Xonotic/misc/logos/icons_png/xonotic_512.png $pkgdir/usr/share/pixmaps/xonotic.png
}
# vim: ts=2:sw=2 et:
|