summaryrefslogtreecommitdiff
path: root/community-testing/spring/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-07-31 00:02:30 +0000
committerroot <root@rshg054.dnsready.net>2012-07-31 00:02:30 +0000
commit5b3474881a154216b47c6e154552ee5f9c68c509 (patch)
tree098f24750e89f88b3c80ded4579a44928bae1b45 /community-testing/spring/PKGBUILD
parent4982c269b318734d01ad30c6592fbb73565ceb12 (diff)
Tue Jul 31 00:02:29 UTC 2012
Diffstat (limited to 'community-testing/spring/PKGBUILD')
-rw-r--r--community-testing/spring/PKGBUILD17
1 files changed, 9 insertions, 8 deletions
diff --git a/community-testing/spring/PKGBUILD b/community-testing/spring/PKGBUILD
index 4cccb63b3..f7dae92f1 100644
--- a/community-testing/spring/PKGBUILD
+++ b/community-testing/spring/PKGBUILD
@@ -1,4 +1,4 @@
-# $Id: PKGBUILD 73775 2012-07-15 13:20:50Z ibiru $
+# $Id: PKGBUILD 74522 2012-07-29 21:16:32Z ebelanger $
# Maintainer: Sven-Hendrik Haase <sh@lutzhaase.com>
# Contributor: Arkham <arkham at archlinux dot us>
# Contributor: Christoph Zeiler <archNOSPAM_at_moonblade.dot.org>
@@ -6,16 +6,17 @@
pkgname=spring
pkgver=0.89.0
_pkgver=89.0
-pkgrel=1
+pkgrel=2
pkgdesc='A free 3D real-time-strategy (RTS) game engine'
arch=('i686' 'x86_64')
url="http://springrts.com/"
license=('GPL')
depends=('openal' 'glew' 'boost-libs' 'freetype2' 'devil' 'libvorbis' 'sdl'
- 'libxcursor')
+ 'libxcursor' 'curl' 'shared-mime-info' 'desktop-file-utils')
makedepends=('boost' 'cmake' 'zip' 'xz' 'p7zip' 'python2' 'java-environment')
optdepends=('python2: python-based bots'
'java-runtime: java-based bots')
+install=spring.install
source=(http://downloads.sourceforge.net/sourceforge/springrts/${pkgname}_${_pkgver}_src.tar.lzma
boost-1.50.patch)
md5sums=('36fc266e925bc3790a68bf1bc7ebb315'
@@ -27,21 +28,21 @@ build() {
cd spring_${_pkgver}
sed "s/TIME_UTC/TIME_UTC_/g" -i AI/Skirmish/E323AI/CScopedTimer.h
- patch -Np1 < $srcdir/boost-1.50.patch
+ patch -Np1 < "$srcdir/boost-1.50.patch"
cmake . \
-DCMAKE_INSTALL_PREFIX=/usr \
- -DDATADIR=share/spring
+ -DDATADIR=share/spring -DCMAKE_SKIP_RPATH:BOOL=YES
make
}
package() {
cd spring_${_pkgver}
- make DESTDIR=$pkgdir install
+ make DESTDIR="$pkgdir" install
- install -d $pkgdir/etc/spring
- echo '$HOME/.spring' > $pkgdir/etc/spring/datadir
+ install -d "$pkgdir/etc/spring"
+ echo '$HOME/.spring' > "$pkgdir/etc/spring/datadir"
}
# vim sw=2:ts=2 et: