summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 242f85a42d13ad6e314f17bc02df5cdd739bb558 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# Contributor: Angelo Theodorou <encelo@users.sourceforge.net>
pkgname=bitefusion
pkgver=1.0.1
pkgrel=2
pkgdesc="A snake game with 8 levels"
arch=('i686' 'x86_64')
url="http://www.junoplay.com"
license=('GPL')
depends=('sdl' 'zlib')
source=(http://www.junoplay.com/files/$pkgname-$pkgver.tar.gz)
md5sums=('d7bc933c3363a76b4cb3eeb2a4f33b40')

build() {
  cd $srcdir/$pkgname-$pkgver
  ./configure --prefix=/usr
  make || return 1
  make DESTDIR=$pkgdir install
}