# Maintainer: Mrmaxmeier # TODO: dynamically choose between /builds/.. and /builds/old/.. pkgname=bombsquad pkgver=1.4.132 pkgrel=1 pkgdesc='An explosive arcade-style party game' arch=('x86_64' 'i686') url='http://www.froemling.net/apps/bombsquad' license=('unknown') depends=('openal' 'libgl' 'sdl2' 'libvorbis' 'libogg') 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=('b829c2b6b04d999551ecd62e431948f9e763f8ce5330041fecc9275950a14f6a') source_x86_64=("http://www.files.froemling.net/bombsquad/builds/BombSquad_Linux_64bit_${pkgver}.tar.gz") sha256sums_x86_64=('640d3d23815bfc5d38cc9b3023aa5c380d3b3db6c3679bf6cc2e21210b497662') 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 }