mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-12-08 23:03:46 +00:00
22 lines
648 B
Bash
22 lines
648 B
Bash
|
# $Id: PKGBUILD 82 2009-07-17 19:56:55Z aaron $
|
||
|
# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
|
||
|
# Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
|
||
|
|
||
|
pkgname=barrage
|
||
|
pkgver=1.0.2
|
||
|
pkgrel=3
|
||
|
pkgdesc="A violent point-and-click shooting game with nice effects"
|
||
|
arch=('i686' 'x86_64')
|
||
|
url="http://lgames.sourceforge.net/index.php?project=Barrage"
|
||
|
license=("GPL")
|
||
|
depends=('sdl_mixer')
|
||
|
source=(http://downloads.sourceforge.net/lgames/${pkgname}-${pkgver}.tar.gz)
|
||
|
md5sums=('5dbecef907eb27215e8cc047eae2ee90')
|
||
|
|
||
|
build() {
|
||
|
cd $startdir/src/$pkgname-$pkgver
|
||
|
./configure --prefix=/usr
|
||
|
make || return 1
|
||
|
make DESTDIR=$startdir/pkg install
|
||
|
}
|