updated on Tue Jan 10 04:01:21 UTC 2012
[aur-mirror.git] / mapnik-git / PKGBUILD
blobe0b63b5dc7e0fa05c016684290a89af9bca1d891
1 # Maintainer: AJ Ashton <aj.ashton@gmail.com>
2 pkgname=mapnik-git
3 pkgver=20111219
4 pkgrel=1
5 pkgdesc="Free toolkit for developing mapping applications."
6 arch=('i686' 'x86_64')
7 url="http://mapnik.org"
8 license=('LGPL')
9 depends=('freetype2' 'libxml2' 'icu' 'boost' 'pycairo' 'cairomm' 'gdal' 'curl')
10 makedepends=('git' 'pkgconfig' 'python2')
11 provides=(mapnik)
12 conflicts=(mapnik)
14 _gitroot=git://github.com/mapnik/mapnik.git
15 _gitname=mapnik
17 build() {
18   cd "$srcdir"
19   msg "Connecting to GIT server...."
21   if [[ -d "$_gitname" ]]; then
22     cd "$_gitname" && git pull origin
23     msg "The local files are updated."
24   else
25     git clone "$_gitroot" "$_gitname"
26   fi
28   msg "GIT checkout done or server timeout"
29   msg "Starting build..."
31   rm -rf "$srcdir/$_gitname-build"
32   git clone "$srcdir/$_gitname" "$srcdir/$_gitname-build" --depth=1
33   cd "$srcdir/$_gitname-build"
35   # Patch SConstruct so libs end up in /usr/lib and not in /usr/lib64 on x86_64
36   msg "Fixing LIBDIR_SCHEMA..."
37   cd "$srcdir/$_gitname-build"
38   sed -i -e "/LIBDIR_SCHEMA=/s/lib64/lib/" SConstruct
40   python2 scons/scons.py configure PREFIX=/usr
42   python2 scons/scons.py
45 package() {
46   cd "$srcdir/$_gitname-build"
47   python2 scons/scons.py install DESTDIR="$pkgdir"
50 # vim:set ts=2 sw=2 et: