# Maintainer: Mrmaxmeier # TODO: dynamically choose between /builds/.. and /builds/old/.. pkgname=bombsquad pkgver=1.4.113 pkgrel=2 pkgdesc='An explosive arcade-style party game' arch=('x86_64' 'i686') url='http://www.froemling.net/apps/bombsquad' license=('unknown') depends=('openal' 'libgl' 'sdl2' 'gcc' 'libvorbis' 'libogg' 'libxau') source=('bombsquad.sh' 'bombsquad.desktop') sha256sums=('850f8a66eb045ce833f8d7dae4533f69b629ac648bd205d98bf5f851339d4515' '900ffdf250eb2c59a2944703ccab9b69e58b5cdd7809f8349f6291db0301935c') source_i686=("http://www.files.froemling.net/bombsquad/builds/BombSquad_Linux_32bit_${pkgver}.tar.gz") sha256sums_i686=('dcde9931a2d684553a52eabcb9b31f356460757d9fae26bbb7defc3bb3cb6130') source_x86_64=("http://www.files.froemling.net/bombsquad/builds/BombSquad_Linux_64bit_${pkgver}.tar.gz") sha256sums_x86_64=('119da3c8a54e316db944cb408dd871a206886722a7044a1abf6e70779fc1a659') package() { case "$CARCH" in x86_64) cd "$srcdir"/BombSquad_Linux_64bit_"$pkgver" ;; i686) cd "$srcdir"/BombSquad_Linux_32bit_"$pkgver" ;; esac install -Dm755 bombsquad "$pkgdir"/usr/share/bombsquad/bombsquad install -dm755 data "$pkgdir"/usr/share/bombsquad/data cp -r data "$pkgdir"/usr/share/bombsquad/ find "${pkgdir}/usr/share/bombsquad/data" -type f -exec chmod 644 {} \; find "${pkgdir}/usr/share/bombsquad/data" -type d -exec chmod 755 {} \; install -Dm 755 "$srcdir"/bombsquad.sh "$pkgdir"/usr/bin/$pkgname install -Dm 644 "$srcdir"/bombsquad.desktop "$pkgdir"/usr/share/applications/bombsquad.desktop }