updated on Tue Jan 17 20:03:13 UTC 2012
[aur-mirror.git] / atkmm-git-mys / PKGBUILD
blobc10c05d3d05050d1f7004e0b45f5550a3063cccd
1 # Contributor: mariusz - myswiat <my.swiat@o2.pl>
3 pkgname=atkmm-git-mys
4 pkgver=20110705
5 pkgrel=1
6 pkgdesc="C++ bindings for the ATK library"
7 arch=('i686' 'x86_64')
8 url="http://gnome.org/"
9 license=('LGPL')
10 depends=('git' 'mm-common-git')
11 options=('!libtool')
12 provides=()
13 conflicts=('atkmm' 'atk-git')
14 source=()
15 md5sums=()
17 _gitroot="http://git.gnome.org/browse/atkmm"
18 _gitname="atkmm"
20 build() {
21   cd $srcdir
22   msg "Connecting to git.gnome.org GIT server...."
24   if [ -d $srcdir/$_gitname ] ; then
25     cd $_gitname && git pull origin
26     msg "The local files are updated."
27   else
28     git clone $_gitroot
29   fi
31   msg "GIT checkout done or server timeout"
32   msg "Starting make..."
34   cp -r $srcdir/$_gitname $srcdir/$_gitname-build
35   cd $srcdir/$_gitname-build
37   msg "Starting build"
38   ./autogen.sh -prefix=/usr 
39   make
40   make DESTDIR=$pkgdir install
42   rm -rf $srcdir/$_gitname-build