updated on Wed Jan 18 08:00:29 UTC 2012
[aur-mirror.git] / freedink-git / PKGBUILD
blob6c36b7e03bf0076ffc384baa1ab679d8313bfb45
1 # Contributor: Petteri Tolonen <pretzel[at]mbnet.fi>
3 pkgname=freedink-git
4 pkgver=20080907
5 pkgrel=1
6 pkgdesc="A free, portable and enhanced version of the Dink Smallwood game engine."
7 arch=('i686' 'x86_64')
8 url="http://www.freedink.org/"
9 license=('GPL')
10 conflicts=('freedink')
11 replaces=('freedink')
12 depends=('sdl_mixer' 'libzip' 'sdl_ttf' 'sdl_image' 'sdl_gfx')
13 makedepends=('git' 'automake' 'help2man')
14 _gitroot='git://git.savannah.gnu.org/freedink.git'
15 _gitname='freedink'
16 source=()
17 md5sums=()
19 build() {
21    cd $startdir/src
23    msg "Connecting to git.savannah.gnu.org GIT server...."
25    if [ -d $startdir/src/$_gitname ] ; then
26       cd $_gitname && git pull origin
27       msg "The local files are updated."
28    else
29       git clone $_gitroot
30       cd $_gitname
31    fi
33    sh ./bootstrap
34    ./configure --prefix=/usr
35    make || return 1
36    make install DESTDIR=$pkgdir || return 1