mirror of
https://gitdl.cn/https://github.com/chakralinux/desktop.git
synced 2025-01-24 02:22:13 +08:00
32 lines
809 B
Bash
32 lines
809 B
Bash
#
|
|
# Games Packages for Chakra, part of chakra-project.org
|
|
#
|
|
# Maintainer: Adrián Chaves Fernández (Gallaecio) <adriyetichaves gmail.com>
|
|
|
|
pkgname=dnt
|
|
pkgver=0.12
|
|
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' )
|
|
depends=('cal3d' 'glu' 'mesa' 'libgl' 'libvorbis' 'openal' 'sdl2' 'sdl2_image' 'sdl2_ttf')
|
|
makedepends=(cmake)
|
|
replaces=(dccnitghtmare)
|
|
categories=('games')
|
|
source=("http://downloads.sourceforge.net/$pkgname/$pkgname-$pkgver.tar.bz2")
|
|
md5sums=('fde7257adce1e9405caedd3eacb7d4e1')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname
|
|
cmake \
|
|
-DCMAKE_INSTALL_PREFIX=$pkgdir/usr \
|
|
.
|
|
make
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname
|
|
make install
|
|
}
|