updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / gtkparasite-git / PKGBUILD
blob0807901755ce70e6f857b1174dfbe41176ed8daa
1 # Contributor: Hagen Schink <troja84@googlemail.com>
3 pkgname=gtkparasite-git
4 pkgver=20090121
5 pkgrel=1
6 pkgdesc="Gtk+ debugging and development tool"
7 url="http://chipx86.github.com/gtkparasite/"
8 arch=('i686' 'x86_64')
9 license=('MIT')
10 depends=('gtk2' 'pygtk')
11 makedepends=('git')
12 conflicts=()
13 replaces=()
14 backup=()
15 source=()
16 md5sums=()
18 _gitroot="git://github.com/chipx86/gtkparasite"
19 _gitname="gtkparasite"
21 build() {
22   cd ${srcdir}
23   msg "Connecting to github.com GIT server...."
25   if [ -d ${srcdir}/$_gitname ] ; then
26   cd $_gitname && git pull origin
27   msg "The local files are updated."
28   else
29   git clone $_gitroot
30   fi
32   msg "GIT checkout done or server timeout"
33   msg "Starting make..."
35   git clone $_gitname $_gitname-build
36   cd ${srcdir}/$_gitname-build
38   ./autogen.sh --prefix=/usr
39   make || return 1
40   make DESTDIR=${pkgdir} install || return 1
41