mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
22 lines
646 B
Bash
22 lines
646 B
Bash
# $Id: PKGBUILD 45093 2009-07-07 00:36:20Z eric $
|
|
# Maintainer: Tobias Powalowski <tpowa@archlinux.org>
|
|
|
|
pkgname=tuxpuck
|
|
pkgver=0.8.2
|
|
pkgrel=3
|
|
pkgdesc="Airhockey with tux"
|
|
arch=('i686' 'x86_64')
|
|
url="http://home.no.net/munsuun/tuxpuck/"
|
|
license=('GPL2')
|
|
depends=('libjpeg' 'sdl' 'libpng' 'libvorbis')
|
|
makedepends=('freetype2')
|
|
options=('!makeflags')
|
|
source=(http://ftp.de.debian.org/debian/pool/main/t/tuxpuck/tuxpuck_$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
|
|
}
|