updated on Wed Jan 25 16:08:47 UTC 2012
[aur-mirror.git] / pangomm-git / PKGBUILD
bloba8707af6d9400a548675fc8653a3540c512e4a56
1 # Contributor: mariusz - myswiat <my.swiat@o2.pl>
3 pkgname=pangomm-git
4 pkgver=20110703
5 pkgrel=1
6 pkgdesc="A library for layout and rendering of text"
7 arch=('i686' 'x86_64')
8 url="http://gnome.org/"
9 license=('LGPL')
10 depends=('glib2' 'cairo' 'pango-git' 'mm-common-git')
11 options=('!libtool')
12 provides=('')
13 conflicts=()
14 source=()
15 md5sums=()
17 _gitroot="http://git.gnome.org/browse/pangomm"
18 _gitname="pangomm"
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