desktop/dnt/PKGBUILD

32 lines
809 B
Bash
Raw Normal View History

#
# Games Packages for Chakra, part of chakra-project.org
#
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
2012-09-17 04:08:18 +08:00
pkgname=dnt
2016-05-20 02:08:50 +08:00
pkgver=0.12
2012-06-18 00:51:55 +08:00
pkgrel=1
pkgdesc="A sarcastic 3D single player RPG set in a post-apocalyptical world."
arch=('i686' 'x86_64')
url="http://dnt.dnteam.org/"
license=('custom:code:GPL' 'custom:media:GPL, CC:BY-SA or Public Domain' )
2016-05-20 02:08:50 +08:00
depends=('cal3d' 'glu' 'mesa' 'libgl' 'libvorbis' 'openal' 'sdl2' 'sdl2_image' 'sdl2_ttf')
2012-09-17 04:08:18 +08:00
makedepends=(cmake)
replaces=(dccnitghtmare)
2012-03-07 19:00:46 +08:00
categories=('games')
2016-05-20 02:08:50 +08:00
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
md5sums=('fde7257adce1e9405caedd3eacb7d4e1')
build() {
cd $srcdir/$pkgname
2012-09-17 04:08:18 +08:00
cmake \
-DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
.
make
}
package() {
cd $srcdir/$pkgname
2012-09-17 04:08:18 +08:00
make install
}