summaryrefslogtreecommitdiff
path: root/community/critter/PKGBUILD
diff options
context:
space:
mode:
Diffstat (limited to 'community/critter/PKGBUILD')
-rw-r--r--community/critter/PKGBUILD29
1 files changed, 29 insertions, 0 deletions
diff --git a/community/critter/PKGBUILD b/community/critter/PKGBUILD
new file mode 100644
index 000000000..3697a70b7
--- /dev/null
+++ b/community/critter/PKGBUILD
@@ -0,0 +1,29 @@
+# Maintainer: Allan McRae <mcrae_allan@hotmail.com>
+
+pkgname=critter
+_origname=CriticalMass
+pkgver=1.0.2
+pkgrel=4
+pkgdesc="Critical Mass (aka Critter) is an SDL/OpenGL space shoot'em up game"
+arch=('i686' 'x86_64')
+url="http://criticalmass.sourceforge.net/critter.php"
+license=('GPL')
+depends=('sdl_image' 'sdl_mixer' 'mesa')
+source=(http://downloads.sourceforge.net/sourceforge/criticalmass/$_origname-$pkgver.tar.bz2
+ critter-gcc43.patch
+ critter.desktop)
+md5sums=('e2aff114bffa717fb79c82e1dc473ebe'
+ 'e936920acce56bfa3b0123ca8b1193a6'
+ '98c17809aed964c445adad09827035df')
+
+build() {
+ cd $startdir/src/$_origname-$pkgver
+ patch -Np1 -i ../critter-gcc43.patch
+ sed -i 's|-lpng12|-lpng|g' configure
+ ./configure --prefix=/usr --mandir=/usr/share/man
+ make || return 1
+ make DESTDIR=$startdir/pkg install
+ install -Dm644 critter.png ${startdir}/pkg/usr/share/pixmaps/critter.png
+ install -Dm644 ../critter.desktop \
+ ${startdir}/pkg/usr/share/applications/critter.desktop
+}