summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 613459a2f11ba78fa41facb28003e2cd555b2b34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# Maintainer: Steffen Weber <-boenki-gmx-de->
# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
# Contributor: Christopher Rogers <slaxemulator@gmail.com>
# Contributor: J. W. Birdsong <jwbirdsong AT gmail DOT com> 

pkgname=wordwarvi
pkgver=1.0.2
pkgrel=1
pkgdesc="Side-scrolling shoot 'em up '80s style arcade game"
arch=('i686' 'x86_64')
url="http://smcameron.github.io/$pkgname"
license=('GPL2' 'custom')
depends=('gtk2' 'portaudio' 'libvorbis')
source=($pkgname-$pkgver.tar.gz::https://github.com/smcameron/$pkgname/archive/v$pkgver.tar.gz
        $pkgname.desktop)
md5sums=('c55fad24f42ad2be0e06ac70f5fbc0be'
         'ab6a905ec749940057a3816a833f103b')

build() {
  cd $pkgname-$pkgver
  make 
}

package() {
  cd $pkgname-$pkgver

  make DESTDIR="$pkgdir" install

  mv $pkgdir/usr/games $pkgdir/usr/bin

  install -Dm644 sounds/Attribution.txt $pkgdir/usr/share/licenses/$pkgname/COPYING_SOUNDS
  install -Dm644 ../$pkgname.desktop $pkgdir/usr/share/applications/$pkgname.desktop
  install -Dm644 icons/wordwarvi_icon_48x48.png $pkgdir/usr/share/pixmaps/$pkgname.png

  for _width in '16' '22' '32' '48' '64' '128'; do
    install -Dm644 icons/${pkgname}_icon_${_width}x${_width}.png \
      $pkgdir/usr/share/icons/hicolor/${_width}x${_width}/apps/$pkgname.png
  done
}