updated on Thu Jan 26 16:09:46 UTC 2012
[aur-mirror.git] / libgdata-git-mys / PKGBUILD
blob8d5d895124cd2a2a821567a6ed8d8aaf5df091cf
1 # Contributor: mariusz - myswiat <my.swiat@o2.pl>
3 pkgname=libgdata-git-mys
4 pkgver=20110705
5 pkgrel=1
6 pkgdesc="GLib-based library for accessing online service APIs using the GData protocol"
7 arch=('i686' 'x86_64')
8 url="http://gnome.org/"
9 license=('LGPL')
10 depends=('git' 'liboauth')
11 options=('!libtool')
12 provides=()
13 conflicts=('libgdata')
14 source=()
15 md5sums=()
17 _gitroot="http://git.gnome.org/browse/libgdata"
18 _gitname="libgdata"
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