updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / adonthell-git / PKGBUILD
blobddd29f69c0acbc1df41b4fd4f367c6a6c853dc5a
1 # Contributor: Iwan Gabovitch (qubodup) <qubodup@gmail.com>
3 pkgname=adonthell-git
4 pkgver=20100408
5 pkgrel=1
6 pkgdesc="A 2D graphical, single player role playing game engine"
7 arch=('i686' 'x86_64')
8 url="http://adonthell.linuxgames.com/"
9 license=('GPL')
10 depends=('sdl_mixer>=1.2' 'sdl_ttf>=2' 'python>=2')
12 _gitroot="git://github.com/ksterker/adonthell.git"
13 _gitname="adonthell"
15 build() {
16   cd $srcdir
18   msg "Connecting to GIT server...."
20   if [ -d $_gitname ] ; then
21     cd $_gitname && git pull origin
22     msg "The local files are updated."
23   else
24     git clone $_gitroot $_gitname
25   fi
27   cd "$srcdir/$_gitname"
29   msg "GIT checkout done or server timeout"
30   msg "Starting make..."
32   ./autogen.sh
33   ./configure --prefix=/usr
34   make || return 1
35   make DESTDIR=$pkgdir install