mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-26 15:32:15 +08:00
39 lines
1.0 KiB
Bash
39 lines
1.0 KiB
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=lipsofsuna
|
|
pkgver=0.7.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' '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=('becce43df1d61086a47e37bd13960e9a')
|
|
|
|
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
|
|
}
|