diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/barrage |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/barrage')
-rw-r--r-- | community/barrage/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/community/barrage/PKGBUILD b/community/barrage/PKGBUILD new file mode 100644 index 000000000..2afa001cd --- /dev/null +++ b/community/barrage/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 21744 2010-07-17 07:41:46Z lcarlier $ +# Maintainer: Allan McRae <mcrae_allan@hotmail.com> +# Contributor: Angelo Theodorou <encelo@users.sourceforge.net> + +pkgname=barrage +pkgver=1.0.2 +pkgrel=4 +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 ${srcdir}/$pkgname-$pkgver + + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR="$pkgdir" install +} |