updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / crawl-git / PKGBUILD
blob599bba0e527d533ef72a9c6f4d411d21a40af2f0
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 # See http://wiki.archlinux.org/index.php/VCS_PKGBUILD_Guidelines
7 # for more information on packaging from GIT sources.
9 # Maintainer: Weston Hanners <weston@hanners.us>
10 pkgname=crawl-git
11 pkgver=20110406
12 pkgrel=1
13 pkgdesc="A modern roguelike game played in the console."
14 arch=(i686)
15 url="http://crawl.develz.org"
16 license=('GPL')
17 groups=()
18 depends=('zlib>=1.0','ncurses>=5.0')
19 makedepends=('git>=1.7','zlib>=1.0','ncurses')
20 provides=()
21 conflicts=()
22 replaces=()
23 backup=()
24 options=()
25 install=
26 source=()
27 noextract=()
28 md5sums=() #generate with 'makepkg -g'
30 _gitroot="GITURL"
31 _gitname="MODENAME"
33 build() {
34   cd "$srcdir"
35   rm -Rf "$srcdir"/crawl
36   msg "Connecting to GIT server...."
37   git clone git://gitorious.org/crawl/crawl.git
38   msg "GIT checkout done or server timeout"
39   msg "Starting make..."
40   cd "$srcdir"/crawl/
41   git submodule update --init
42   cd "$srcdir"/crawl/crawl-ref/source/
44   #
45   # BUILD HERE
46   #
48   make NO_LUA_BINDINGS=Y
51 package() {
52   cd "$srcdir"/crawl/crawl-ref/source/
53   make prefix=/usr/local/ DESTDIR="$pkgdir/" install
54