mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
26 lines
826 B
Bash
26 lines
826 B
Bash
|
# Contributor: Jaroslaw Swierczynski <swiergot@aur.archlinux.org>
|
||
|
# Contributor: Eric Belanger <belanger@astro.umontreal.ca>
|
||
|
# Contributor: vande198
|
||
|
|
||
|
pkgname=supertux
|
||
|
pkgver=0.3.1
|
||
|
pkgrel=4
|
||
|
pkgdesc="A classic 2D jump'n run sidescroller game in a style similar to the original SuperMario games"
|
||
|
url="http://super-tux.sourceforge.net/"
|
||
|
license=('GPL')
|
||
|
arch=('i686' 'x86_64')
|
||
|
depends=('sdl_image' 'curl' 'libgl' 'physfs' 'openal' 'libvorbis')
|
||
|
makedepends=('ftjam')
|
||
|
source=(http://download.berlios.de/supertux/${pkgname}-${pkgver}d.tar.bz2 \
|
||
|
gcc44.patch)
|
||
|
md5sums=('6741f3874f64bc5371d72d664a6424bc'
|
||
|
'c09e31e22837448be0d10e0db685bc06')
|
||
|
|
||
|
build() {
|
||
|
cd $srcdir/$pkgname-$pkgver
|
||
|
patch -Np1 -i $srcdir/gcc44.patch || return 1
|
||
|
./configure --prefix=/usr
|
||
|
jam || return 1
|
||
|
jam -sprefix=$startdir/pkg/usr install
|
||
|
}
|