updated on Tue Jan 10 16:09:17 UTC 2012
[aur-mirror.git] / gvfs-git / PKGBUILD
blob7dcb6821f022b4036d220cd5cf1f0a329c658626
1 # Contributor: mariusz - myswiat <my.swiat@o2.pl>
3 pkgname=gvfs-git
4 pkgver=20110705
5 pkgrel=1
6 pkgdesc="Virtual filesystem implementation for gio"
7 arch=('i686' 'x86_64')
8 url="http://gnome.org/"
9 license=('LGPL')
10 depends=('git')
11 options=('!libtool')
12 provides=()
13 conflicts=()
14 source=()
15 md5sums=()
17 _gitroot="http://git.gnome.org/browse/gvfs"
18 _gitname="gvfs"
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