diff options
Diffstat (limited to 'community/xonotic/PKGBUILD')
-rw-r--r-- | community/xonotic/PKGBUILD | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/community/xonotic/PKGBUILD b/community/xonotic/PKGBUILD new file mode 100644 index 000000000..676240162 --- /dev/null +++ b/community/xonotic/PKGBUILD @@ -0,0 +1,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: |