desktop/lipsofsuna/PKGBUILD
Adrian Chaves Fernandez (Gallaecio) d981a4ecdf Enet 1.3.6
2012-12-12 07:03:38 +00:00

36 lines
944 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.6.0
pkgrel=5
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' 'ogre' 'openal' 'sdl' 'sdl_ttf' 'sqlite3')
makedepends=('python')
categories=('games')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
md5sums=('d41996b2eaa5aafba41c13dd268a9c00')
build() {
cd $srcdir/$pkgname-$pkgver
./waf configure \
--prefix=/usr \
--relpath=false \
--optimize=true
./waf build
}
package() {
cd $srcdir/$pkgname-$pkgver
./waf install \
--destdir=$pkgdir
}