summaryrefslogtreecommitdiff
path: root/community/gnujump/PKGBUILD
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2013-01-20 15:38:15 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2013-01-20 15:38:15 -0300
commitc28258d27bd9d58760eb647f912bb98a536aa753 (patch)
tree261e61872b291c02790e5483c769710942547731 /community/gnujump/PKGBUILD
parenteefed5e3db847eccce0207f89c7430b9ec4994b7 (diff)
parent949fa4e5ed405aaddcebff7e21008f03cdffa580 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/erlang/PKGBUILD community/fcitx-mozc/PKGBUILD community/geda-gaf/PKGBUILD community/mplayer2/PKGBUILD community/parcellite/PKGBUILD community/python2-pytables/PKGBUILD community/ruby-gtk2/PKGBUILD core/kbd/PKGBUILD core/systemd/PKGBUILD extra/calligra/PKGBUILD extra/dmapi/PKGBUILD extra/gstreamer0.10-ugly/PKGBUILD extra/gvfs/PKGBUILD extra/libcdio/PKGBUILD extra/libtorrent-rasterbar/PKGBUILD extra/llvm/PKGBUILD extra/nx/PKGBUILD extra/ocaml/PKGBUILD extra/php-xcache/PKGBUILD extra/qtwebkit/PKGBUILD extra/vcdimager/PKGBUILD extra/w3m/PKGBUILD extra/xorg-bdftopcf/PKGBUILD extra/xorg-xcalc/PKGBUILD extra/xorg-xconsole/PKGBUILD extra/xorg-xedit/PKGBUILD extra/xorg-xmag/PKGBUILD extra/xorg-xmessage/PKGBUILD extra/xorg-xvidtune/PKGBUILD libre/unzip-libre/PKGBUILD social/opentracker/PKGBUILD
Diffstat (limited to 'community/gnujump/PKGBUILD')
-rw-r--r--community/gnujump/PKGBUILD39
1 files changed, 39 insertions, 0 deletions
diff --git a/community/gnujump/PKGBUILD b/community/gnujump/PKGBUILD
new file mode 100644
index 000000000..0da4248af
--- /dev/null
+++ b/community/gnujump/PKGBUILD
@@ -0,0 +1,39 @@
+# $Id: PKGBUILD 82500 2013-01-19 17:34:43Z jsteel $
+# Maintainer: jsteel <mail at jsteel dot org>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+# Contributor: Patrik Ilg <p.ilg@arcor.de>
+
+pkgname=gnujump
+pkgver=1.0.8
+pkgrel=3
+pkgdesc="A clone of the simple yet addictive game Xjump"
+arch=('i686' 'x86_64')
+url="http://gnujump.es.gnu.org"
+license=('GPL3')
+depends=('libgl' 'sdl_image' 'sdl_mixer')
+makedepends=('mesa' 'glu')
+source=(ftp://ftp.gnu.org/gnu/$pkgname/$pkgname-$pkgver.tar.gz
+ ftp://ftp.archlinux.org/other/community/$pkgname/$pkgname.png
+ $pkgname.desktop)
+md5sums=('a8bdd3402a9d12faa5835a2c41ef7b3e'
+ 'aff6af66e632095aa3154e952571f9b5'
+ 'd875e92130b669a4148908bc391a2a8c')
+
+build() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ LDFLAGS="-lm"
+
+ ./configure --prefix=/usr
+
+ make
+}
+
+package() {
+ cd "$srcdir"/$pkgname-$pkgver
+
+ make DESTDIR="$pkgdir"/ install
+
+ install -Dm644 "$srcdir"/$pkgname.png "$pkgdir"/usr/share/pixmaps/$pkgname.png
+ install -Dm644 "$srcdir"/$pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop
+}