desktop/lipsofsuna/PKGBUILD

39 lines
1.0 KiB
Bash
Raw Normal View History

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
pkgname=lipsofsuna
2013-11-18 13:47:29 +08:00
pkgver=0.8.0
2014-02-01 09:42:09 +08:00
pkgrel=2
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')
2012-06-09 06:07:46 +08:00
depends=('bullet' 'enet' 'flac' 'glew' 'inotify-tools' 'libogg' 'libvorbis' 'lua' 'ogre' 'openal' 'sdl' 'sdl_ttf' 'sqlite3')
makedepends=('python')
2012-03-07 19:00:46 +08:00
categories=('games')
changelog=ChangeLog
source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
2013-11-18 13:47:29 +08:00
md5sums=('92bc72aab1236714e31545e930ae16bf')
build() {
cd $srcdir/$pkgname-$pkgver
2013-08-10 19:14:13 +08:00
LDFLAGS=-lboost_system \
./waf configure \
--bindir=/usr/bin \
--libdir=/usr/lib \
--datadir=/usr/share \
--disable-relpath \
--enable-optimization
./waf build
}
package() {
cd $srcdir/$pkgname-$pkgver
./waf install \
--destdir=$pkgdir
}