mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
36 lines
998 B
Bash
36 lines
998 B
Bash
pkgname=lipsofsuna
|
|
pkgver=0.8.0
|
|
pkgrel=8
|
|
pkgdesc="Tongue-in-cheek dungeon crawl game that takes place in the chaotic dungeons of Suna."
|
|
arch=('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
|
|
}
|