# Maintainer: Mike Swanson pkgname=crispy-doom pkgdesc="Vanilla-compatible enhanced Doom engine" pkgver=5.6.4 pkgrel=1 arch=('i686' 'x86_64') url="http://fabiangreffrath.github.io/crispy-doom" license=('GPL2') depends=('hicolor-icon-theme' 'libpng' 'libsamplerate' 'sdl2_mixer' 'sdl2_net') makedepends=('python') optdepends=('freedm: Free deathmatch game' 'freedoom1: Free Ultimate Doom-compatible game' 'freedoom2: Free Doom II-compatible game') install=crispy-doom.install source=(https://github.com/fabiangreffrath/$pkgname/archive/$pkgname-$pkgver.tar.gz) sha512sums=('f7c4811e669d73149a6cee754121b5aae61f36b5a264059d9c6c4f496338517ea51bda1fb488af999ed36d5bddd79ac4edf2b5096d093903efe0885e34acce20') prepare() { cd "$pkgname-$pkgname-$pkgver" for patch in ../*.patch; do if [ ! -f "$patch" ]; then break; else patch -p1 -i "$patch" fi done } build() { cd "$pkgname-$pkgname-$pkgver" ./autogen.sh --prefix=/usr make } package() { cd "$pkgname-$pkgname-$pkgver" make DESTDIR="$pkgdir" install cd "$pkgdir"/usr rm -rf share/man/man5/default.cfg.5 \ share/man/man6/chocolate-{server,setup}.6 }