desktop/lipsofsuna/PKGBUILD
Adrian Chaves (Gallaecio) c04250fe2e lua 5.3.3
Packages that do not support latest Lua have been moved to the CCR. If requested,
we could package lua52 and lua51 in the official repoitories to support popular
packages that have not yet caught up with latest Lua.
2016-09-21 23:49:54 +02:00

36 lines
1005 B
Bash

pkgname=lipsofsuna
pkgver=0.8.0
pkgrel=6
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' 'boost-libs' 'enet' 'flac' 'glew' 'inotify-tools' 'libogg' 'libvorbis' 'lua' 'ogre' 'openal' 'sdl' 'sdl_ttf' 'sqlite3')
makedepends=('boost' 'python')
categories=('games')
changelog=ChangeLog
#source=("http://downloads.sourceforge.net/project/$pkgname/$pkgname/$pkgver/$pkgname-$pkgver.tar.gz")
#md5sums=('92bc72aab1236714e31545e930ae16bf')
source=(${pkgname}-${pkgver}::git://git.code.sf.net/p/lipsofsuna/code)
md5sums=('SKIP')
build() {
cd $srcdir/$pkgname-$pkgver
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
}