desktop/warzone2100/PKGBUILD

30 lines
836 B
Bash
Raw Normal View History

pkgname=warzone2100
2016-04-11 18:37:18 +08:00
pkgver=3.1.5
2014-12-30 20:16:56 +08:00
pkgrel=1
pkgdesc="3D real-time strategy game where you fight to rebuilt the world destroyed by nuclear war."
2014-07-16 01:28:45 +08:00
arch=('x86_64')
url="http://wz2100.net/"
license=('GPL')
groups=()
2012-03-07 19:00:46 +08:00
categories=('games')
2014-07-16 01:28:45 +08:00
depends=('sdl_net' 'libgl' 'openal' 'libjpeg' 'libpng' 'libvorbis' 'libtheora'
2014-09-11 00:11:55 +08:00
'libmad' 'physfs' 'mesa' 'quesoglc' 'popt' 'ttf-dejavu' 'qt' 'glew'
'harfbuzz')
2014-07-16 01:28:45 +08:00
makedepends=('gawk' 'bison' 'flex' 'zip' 'unzip')
conflicts=('warzone2100-dev')
changelog=ChangeLog
2016-04-05 11:19:08 +08:00
source=("http://downloads.sourceforge.net/sourceforge/${pkgname}/${pkgname}-${pkgver}.tar.xz")
2016-04-11 18:37:18 +08:00
sha256sums=('21aacc3e475d17338cf7a57aefe4517868822a8167fb6c291f6f6f3b454ca442')
build() {
2014-07-16 01:28:45 +08:00
cd ${pkgname}-${pkgver}
2011-11-13 01:39:34 +08:00
./configure \
--prefix=/usr
make
}
package() {
2014-07-16 01:28:45 +08:00
cd ${pkgname}-${pkgver}
make DESTDIR=${pkgdir} install
}