updated on Sun Jan 15 08:01:04 UTC 2012
[aur-mirror.git] / warzone2100-git / PKGBUILD
blobd601b10f3a57cd94cf997cb3fa7c67a990a93bff
1 # Maintainer: Lari Tikkanen <lartza@wippies.com>
2 pkgname=warzone2100-git
3 pkgver=20110516
4 pkgrel=1
5 pkgdesc="3D realtime strategy game on a future Earth (Git version)"
6 arch=('i686' 'x86_64')
7 url="http://wz2100.net/"
8 license=('GPL')
9 depends=('openal' 'gettext' 'ttf-dejavu' 'physfs' 'qt' 'glew' 'libvorbis' 'libtheora')
10 makedepends=('openal' 'gettext' 'ttf-dejavu' 'physfs' 'qt' 'glew' 'libvorbis' 'libtheora' 'git')
11 provides=('warzone' 'warzone2100' 'warzone-svn' 'warzone2100-beta')
12 conflicts=('warzone2100')
14 _gitroot="git://github.com/Warzone2100/warzone2100.git"
15 _gitname="warzone2100"
17 build() {
18   cd $srcdir
20   if [[ -d $srcdir/$_gitname ]] ; then
21         cd $_gitname
22         git pull origin
23   else
24         git clone $_gitroot $_gitname
25   fi
27   cd $srcdir/$_gitname
29   ./autogen.sh
30   ./configure --prefix=/usr
31   make
34 package() {
35   cd $srcdir/$_gitname
37   make DESTDIR=$pkgdir install