mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-18 22:54:00 +00:00
28 lines
946 B
Bash
28 lines
946 B
Bash
# $Id: PKGBUILD 42655 2009-06-18 06:22:33Z allan $
|
|
# Maintainer: damir <damir@archlinux.org>
|
|
# Contributor: Tom Newsom <Jeepster@gmx.co.uk>
|
|
|
|
pkgname=luola
|
|
pkgver=1.3.0
|
|
pkgrel=3
|
|
pkgdesc="A cavern-flying game for 1-4 players"
|
|
arch=('i686' 'x86_64')
|
|
license=('GPL')
|
|
depends=('sdl_image' 'sdl_ttf' 'sdl_gfx>=2.0.19' 'sdl_mixer')
|
|
url="http://www.luolamies.org/software/luola/"
|
|
source=(http://www.luolamies.org/software/luola/$pkgname-$pkgver.tar.gz
|
|
http://www.luolamies.org/software/luola/stdlevels-6.0.tar.gz
|
|
http://www.luolamies.org/software/luola/nostalgia-1.2.tar.gz)
|
|
md5sums=('3bb6ad28882de3dcb17a0571ba4ed8f9'
|
|
'7660b90d67c06726c1849c3ff0e24aea'
|
|
'4777681fa97ada351ebaf954ba8451ef')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
./configure --prefix=/usr --enable-sdl-gfx -enable-sound
|
|
make || return 1
|
|
make prefix=$pkgdir/usr install
|
|
cd $srcdir
|
|
install -Dm644 {*.png,*.lev} $pkgdir/usr/share/luola/levels
|
|
}
|
|
|