diff options
author | root <root@rshg054.dnsready.net> | 2012-04-07 00:01:17 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2012-04-07 00:01:17 +0000 |
commit | 3d65494a8eda056377febda4642ce992e69a9371 (patch) | |
tree | dae57e04ca5f7d7490acbde87206eaa62695109d /community/xonotic/PKGBUILD | |
parent | d9c1fc1bcca8fd5cd3566fc6b183fe23065778bc (diff) |
Sat Apr 7 00:01:16 UTC 2012
Diffstat (limited to 'community/xonotic/PKGBUILD')
-rw-r--r-- | community/xonotic/PKGBUILD | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/community/xonotic/PKGBUILD b/community/xonotic/PKGBUILD index 9a01eb7c3..1aa1927d9 100644 --- a/community/xonotic/PKGBUILD +++ b/community/xonotic/PKGBUILD @@ -2,7 +2,7 @@ # Contributor: Alexander Suhoverhov <cy at ngs dot ru> pkgname=xonotic pkgver=0.6.0 -pkgrel=1 +pkgrel=2 pkgdesc="A free, fast-paced crossplatform first-person shooter" arch=('i686' 'x86_64') url="http://xonotic.org" @@ -29,6 +29,10 @@ build() { make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 cl-release make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 sdl-release make -C Xonotic/source/darkplaces CPUOPTIMIZATIONS="${CFLAGS}" DP_FS_BASEDIR=/usr/share/xonotic/ DP_LINK_TO_LIBJPEG=1 sv-release + + cd $srcdir/Xonotic/source/d0_blind_id + ./configure --prefix=/usr --disable-rijndael + make } package() { @@ -43,6 +47,10 @@ package() { mkdir -p $pkgdir/usr/share/applications install -Dm644 $srcdir/*.desktop -t $pkgdir/usr/share/applications install -Dm644 $srcdir/Xonotic/misc/logos/icons_png/xonotic_512.png $pkgdir/usr/share/pixmaps/xonotic.png + + # crypto stuff + cd $srcdir/Xonotic/source/d0_blind_id + make DESTDIR=$pkgdir install } # vim: ts=2:sw=2 et: |