updated on Sat Jan 21 20:03:50 UTC 2012
[aur-mirror.git] / ease-git / PKGBUILD
blob0851bfd8333e3bfaf677018172c77a1e4bbfff2d
1 # Maintainer: MaĆ«l Lavault <moimael@neuf.fr>
3 pkgname=ease-git
4 pkgver=20110507
5 pkgrel=1
6 pkgdesc="A presentation application for the GNOME Desktop"
7 arch=('i686' 'x86_64')
8 license=('GPL')
9 depends=('gtk2>=2.0' 'clutter-gtk2>=0.10' 'clutter>=1.0' 'clutter-gst>=1.0' 'pango' 'libgee>=0.5' 'libxml2' 'gvfs' 'gobject-introspection' 'librest06>=0.6.1')
10 makedepends=('vala>=0.9.1' 'gcc' 'make' 'git' 'intltool>=0.25' 'json-glib')
11 options=('!makeflags')
12 provides=("ease")
13 url="http://live.gnome.org/Ease"
15 _gitroot="git://git.gnome.org/ease"
16 _gitname="ease"
18 build() {
19   cd ${srcdir}
20   msg "Connecting to the GIT server...."
21   
22   if [[ -d $srcdir/$_gitname ]] ; then
23     cd $_gitname
24     git pull origin
25     msg "The local files are updated."
26   else
27     git clone $_gitroot
28   fi
30   msg "GIT checkout done"
31   msg "Starting make..."
32   
33   rm -rf $srcdir/$_gitname-build
34   git clone $srcdir/$_gitname $srcdir/$_gitname-build
35   
36   cd $srcdir/$_gitname-build
38   ./autogen.sh --prefix=/usr LIBS="`pkg-config --libs clutter-gst-1.0 --libs libarchive`" || return 1
39   make || return 1
40   make DESTDIR="${pkgdir}" install || return 1