desktop/lipsofsuna/PKGBUILD
Adrián Chaves Fernández (Gallaecio) 6827e6abfa Lips of Suna 0.5.0.
2011-08-22 12:11:37 +00:00

35 lines
916 B
Bash

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=lipsofsuna
pkgver=0.5.0
pkgrel=1
pkgdesc="Tongue-in-cheek dungeon crawl game that takes place in the chaotic dungeons of Suna."
arch=('i686' 'x86_64')
url="http://lipsofsuna.org/"
license=('LGPL3' 'CCPL:by-sa' 'CCPL:by' 'custom:CC0')
depends=('bullet' 'enet' 'flac' 'glew' 'inotify-tools' 'libogg' 'libvorbis' 'lua' 'openal' 'sdl' 'sdl_ttf' 'sqlite3')
makedepends=('python')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('eb85d36cdb9735a0e0aa584f45fd6f56')
build() {
cd $srcdir/$pkgname-$pkgver
./waf configure \
--prefix=/usr \
--relpath=false \
--optimize=true
./waf build
}
package() {
cd $srcdir/$pkgname-$pkgver
./waf install \
--destdir=$pkgdir
}