diff options
Diffstat (limited to 'extra/tuxpuck/PKGBUILD')
-rw-r--r-- | extra/tuxpuck/PKGBUILD | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/extra/tuxpuck/PKGBUILD b/extra/tuxpuck/PKGBUILD new file mode 100644 index 000000000..bbd316b5d --- /dev/null +++ b/extra/tuxpuck/PKGBUILD @@ -0,0 +1,22 @@ +# $Id: PKGBUILD 63695 2010-01-18 10:38:26Z andrea $ +# Maintainer: Tobias Powalowski <tpowa@archlinux.org> + +pkgname=tuxpuck +pkgver=0.8.2 +pkgrel=4 +pkgdesc="Airhockey with tux" +arch=('i686' 'x86_64') +url="http://home.no.net/munsuun/tuxpuck/" +license=('GPL2') +depends=('libjpeg>=8' 'sdl' 'libpng>=1.4.0' 'libvorbis') +makedepends=('freetype2') +options=('!makeflags') +source=(http://ftp.de.debian.org/debian/pool/main/t/${pkgname}/${pkgname}_$pkgver.orig.tar.gz) +md5sums=('fc839abc2b1f3eafae397e1ed6487079') + +build() { + cd $srcdir/$pkgname-$pkgver + sed -i 's|usr/man|usr/share/man|' Makefile || return 1 + make || return 1 + make DESTDIR=$pkgdir install || return 1 +} |