updated on Sun Jan 15 04:04:02 UTC 2012
[aur-mirror.git] / nobug-git / PKGBUILD
blob9c54d6bcb3995392805fd65c617dd4d63ea08a85
1 # Daniel J Griffiths <ghost1227@archlinux.us>
3 pkgname=nobug-git
4 pkgver=20090906
5 pkgrel=1
6 pkgdesc="A debugging library for instrumenting C and C++ programs."
7 arch=('i686' 'x86_64')
8 url="http://pipapo.org/pipawiki/NoBug"
9 license=('GPL')
10 makedepends=('git')
11 optdepends=('valgrind')
12 options=(!libtool)
14 _gitroot="git://git.pipapo.org/nobug"
15 _gitname="nobug"
17 build() {
18   cd ${srcdir}
19   msg "Connecting to GIT server...."
21   if [ -d ${_gitname} ] ; then
22     cd ${_gitname} && git pull origin
23     msg "The local files are updated."
24   else
25     git clone ${_gitroot}
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting make..."
31   rm -rf ${srcdir}/${_gitname}-build
32   git clone ${srcdir}/${_gitname} ${srcdir}/${_gitname}-build
33   cd ${srcdir}/${_gitname}-build
35   autoreconf -i
36   ./configure --prefix=/usr || return 1
37   make || return 1
38   make DESTDIR=${pkgdir} install || return 1
39