mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-02-03 20:57:18 +08:00
38 lines
999 B
Bash
38 lines
999 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
# include global config
|
|
source ../_buildscripts/${current_repo}-${_arch}-cfg.conf
|
|
|
|
pkgname=lipsofsuna
|
|
pkgver=0.3.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=('b196f30f7f01f9eba74d0504bf8d4a1d')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./waf configure \
|
|
--prefix=/usr \
|
|
--relpath=false \
|
|
--optimize=true
|
|
./waf build
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./waf install \
|
|
--destdir=$pkgdir
|
|
}
|