updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / thelayeroffungalwonder / PKGBUILD
blobc6cd8ad66522d0844f28063750a376c4c8467b94
1 # This is an example PKGBUILD file. Use this as a start to creating your own,
2 # and remove these comments. For more information, see 'man PKGBUILD'.
3 # NOTE: Please fill out the license field for your package! If it is unknown,
4 # then please put 'unknown'.
6 # Maintainer: Lakota Morris <lakota.james@gmail.com>
7 pkgname=thelayeroffungalwonder
8 pkgver=1.01
9 pkgrel=1
10 pkgdesc="A sidescrolling shooter/non-shooter inspired by Jeff Vandermeer's Ambergris."
11 arch=(any)
12 url="http://www.niallmoody.com/games.htm#TheLairOfFungalWonder"
13 license=('GPL, CC')
14 groups=()
15 depends=(sdl_ttf glew portaudio)
16 makedepends=()
17 optdepends=()
18 provides=()
19 conflicts=()
20 replaces=()
21 backup=()
22 options=()
23 install=
24 changelog=
25 source=(http://downloads.niallmoody.com.s3.amazonaws.com/TheLairOfFungalWonder-$pkgver-src.tar.gz)
26 noextract=()
27 md5sums=('c2732752338c95c52bed2617967f4d89') #generate with 'makepkg -g'
29 build() {
30   cd "$srcdir/TheLairOfFungalWonder-$pkgver"
32   ./configure --prefix=/usr
33   make
36 package() {
37   cd "$srcdir/TheLairOfFungalWonder-$pkgver"
39   make DESTDIR="$pkgdir/" install
42 # vim:set ts=2 sw=2 et: