mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-28 23:21:53 +00:00
22 lines
656 B
Bash
22 lines
656 B
Bash
|
# Maintainer: Vesa Kaihlavirta <vegai@iki.fi>
|
||
|
# Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
|
||
|
pkgname=warzone2100
|
||
|
pkgver=2.2.1
|
||
|
pkgrel=1
|
||
|
pkgdesc="3D realtime strategy game on a future Earth"
|
||
|
url="http://wz2100.net/"
|
||
|
arch=('i686' 'x86_64')
|
||
|
conflicts=(warzone)
|
||
|
license=(GPL)
|
||
|
depends=(sdl_net libgl openal libjpeg libpng libvorbis libmad physfs mesa quesoglc popt)
|
||
|
makedepends=(gawk bison flex zip unzip)
|
||
|
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.bz2)
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/${pkgname}-$pkgver
|
||
|
sh autogen.sh
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|