# Maintainer: Larry Hajali # Contributor: carstene1ns # Contributor: Anton Bazhenov # Contributor: archtux pkgname=bitfighter pkgver=0.19e pkgrel=1 pkgdesc="A fast-paced team-based outer-space multi-player combat game" arch=('i686' 'x86_64') url="http://bitfighter.org/" license=('GPL') depends=('sdl2' 'libpng' 'libvorbis' 'libmodplug' 'openal' 'speex') makedepends=('cmake' 'libmariadbclient' 'glu') install=${pkgname}.install source=("http://${pkgname}.org/files/${pkgname}-${pkgver/./}.tar.gz" "https://$pkgname.googlecode.com/files/classic_level_pack.zip" "$pkgname.png" "$pkgname.desktop") md5sums=('66ff2a80f4ffd7cd354667e906323759' 'cb32039b47026e176d3f1f3639bd1a9f' '8b28490af9deadd0a1a104ae372f5b08' '657e0ff146dd3dac682e15be5a74fbf0') build() { cd ${pkgname}-${pkgver/./}/build cmake \ -DCMAKE_INSTALL_PREFIX:PATH="/usr" \ -DUSE_SDL2:BOOL=YES \ -DUSE_GLES:BOOL=YES \ -DCMAKE_BUILD_TYPE=Release \ .. make VERBOSE=1 } package() { cd $pkgname-${pkgver/./} # install game ressources and executable install -d "$pkgdir"/usr/share/$pkgname "$pkgdir"/usr/bin cp "${srcdir}"/classic_level_pack/* resource/levels cp -r resource/* exe/*.ini "$pkgdir"/usr/share/$pkgname install -m755 exe/$pkgname "$pkgdir"/usr/bin/$pkgname # install a desktop entry install -Dm644 ../$pkgname.png "$pkgdir"/usr/share/pixmaps/$pkgname.png install -Dm644 ../$pkgname.desktop "$pkgdir"/usr/share/applications/$pkgname.desktop # install documentation and license install -Dm644 doc/README.txt "$pkgdir"/usr/share/doc/$pkgname/README install -Dm644 LICENSE.txt "$pkgdir"/usr/share/licenses/$pkgname/LICENSE }