mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
19 lines
625 B
Bash
19 lines
625 B
Bash
# $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
|
|
}
|