summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: fd3e5042031e61b51dbe746cda08c1f740be6c04 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Contributor: ShadowKyogre <shadowkyogre@writing.com>
pkgname=icebreaker
pkgver=1.2.1
pkgrel=2
pkgdesc="A clone of Jezzball that uses icebergs and penguins. (non-theme support version)"
arch=('i686')
url="http://mattdm.org/icebreaker/"
license=('GPL')
depends=('sdl_mixer')
source=(http://mattdm.org/$pkgname/1.2.x/$pkgname-$pkgver.tgz icebreaker.patch)
md5sums=('9453119cf3342a8828e4805c0c49be50'
         '8c7799878c1ba5fcceeade8a60246a41')

build() {
  cd "$srcdir/$pkgname-$pkgver"
  patch -Np1 -i ../icebreaker.patch  || return 1
  make highscoredir=/var/lib/games prefix=/usr || return 1
  make prefix=$pkgdir/usr install highscoredir=$pkgdir/var/lib/games || return 1
}

# vim:set ts=2 sw=2 et: