PKGBUILDs/extra/corewars/PKGBUILD

20 lines
625 B
Bash
Raw Normal View History

2009-10-10 02:23:22 +00:00
# $Id: PKGBUILD 49917 2009-08-16 21:24:08Z jgc $
# Maintainer: damir <damir@archlinux.org>
pkgname=corewars
pkgver=0.9.13
pkgrel=2
pkgdesc="Simulation game where a number of programs try to crash each other"
arch=('i686' 'x86_64')
url="http://sourceforge.net/projects/corewars/"
license=('GPL2')
depends=('gtk')
source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz)
md5sums=('0a0b8067533b83a96488109ee265f664')
build() {
cd "${srcdir}/${pkgname}-${pkgver}"
./configure --prefix=/usr --mandir=/usr/share/man || return 1
make || return 1
make DESTDIR="${pkgdir}" install || return 1
}