mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
35 lines
914 B
Bash
35 lines
914 B
Bash
# Contributor: SpepS <dreamspepser at yahoo dot it>
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves@gmail.com>
|
|
|
|
pkgname=fife
|
|
pkgver=0.3.5
|
|
pkgrel=4
|
|
pkgdesc="Flexible Isometric Free Engine is a cross platform game creation framework"
|
|
arch=('x86_64')
|
|
url="http://fifengine.net/"
|
|
license=('GPL')
|
|
depends=('boost-libs' 'guichan' 'libvorbis' 'libxcursor' 'mesa' 'tinyxml'
|
|
'openal' 'python2' 'sdl_image' 'sdl_ttf')
|
|
makedepends=('scons' 'boost' 'swig' 'zlib')
|
|
conflicts=("$pkgname-svn")
|
|
source=("http://downloads.sourceforge.net/project/$pkgname/active/src/${pkgname}_$pkgver.tar.gz")
|
|
md5sums=('11ba50b34239535a270d442466632ef7')
|
|
|
|
build() {
|
|
cd $srcdir/${pkgname}_$pkgver
|
|
|
|
# Strip ldconfig.
|
|
sed -i "/LD_RUN_PATH/d" build/linux2-config.py
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/${pkgname}_$pkgver
|
|
|
|
export PYTHON="python2"
|
|
|
|
scons \
|
|
--prefix="/usr" \
|
|
DESTDIR="$pkgdir/" \
|
|
install-all
|
|
}
|