# Maintainer: Mark Vainomaa # Old maintainer: Frederic Bezies < fredbezies at gmail dot com > # Contributor: qs9rx < that nick at enjoys döt it> # Contributor: Christoph Zeiler (the fitzquake PKGBUILD was a base) pkgname=quakespasm-svn _pkgname=quakespasm pkgver=1640 pkgrel=1 pkgdesc="A modern Quake 1 engine. Forked from Fitzquake and improved in many ways such as Vorbis/MP3 support for music. - Development version" arch=('i686' 'x86_64') url="http://quakespasm.sourceforge.net" license=('GPL2') depends=('libvorbis' 'libmad' 'sdl2') makedepends=('subversion') conflicts=('quakespasm') provides=('quakespasm') install=${pkgname}.install source=('svn+https://svn.code.sf.net/p/quakespasm/code/trunk/quakespasm') sha256sums=('SKIP') pkgver() { cd "${srcdir}/${_pkgname}" svnversion } build() { cd "${srcdir}/${_pkgname}/Quake/" msg "Starting make..." make DO_USERDIRS=1 USE_SDL2=1 } package() { cd "${srcdir}/${_pkgname}/Quake/" install -D -m 755 quakespasm "${pkgdir}/usr/bin/${pkgname}" }