blob: d0bf0179034b59df053a79ed2cb6ce7c4f6ec7d6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# $Id: PKGBUILD 216759 2017-03-16 16:07:32Z spupykin $
# Maintainer (Arch): Sergej Pupykin <pupykin.s+arch@gmail.com>
# Maintainer (Arch): Jaroslav Lichtblau <svetlemodry@archlinux.org>
# Contributor (Arch): David Dent <thewinch@gmail.com>
# Contributor (Arch): orbisvicis <orbisvicis@gmail.com>
# Maintainer: André Silva <emulatorman@hyperbola.info>
pkgname=mapnik
pkgver=3.0.13
pkgrel=5.parabola1
pkgdesc="Free Toolkit for developing mapping applications. Above all Mapnik is about rendering beautiful maps, without nonfree mod_fastcgi recommendation"
arch=('i686' 'x86_64' 'armv7h')
url="http://mapnik.org/"
license=('LGPL')
depends=('boost-libs' 'icu' 'libpng' 'libjpeg' 'libtiff' 'freetype2'
'libxml2' 'python2' 'proj' 'cairo' 'cairomm' 'python2-cairo'
'postgresql-libs' 'postgis' 'gdal' 'curl' 'libltdl')
optdepends=('libxslt: Web Map Service'
'python2-lxml: Web Map Service'
'python2-pillow: Web Map Service'
'python-nose: Web Map Service'
'apache: Web Map Service'
'mod_fcgid: Web Map Service - or:'
'mod_wsgi2: Web Map Service')
makedepends=('scons' 'boost' 'git')
install="mapnik.install"
source=("https://github.com/$pkgname/$pkgname/releases/download/v$pkgver/$pkgname-v$pkgver.tar.bz2"
'icu59.patch')
sha256sums=('d6213d514a0e3cd84d9bfcb6d97208d169ffcaae1f36250f6555655cdfe57bcc'
'b391a775f28ec9bc7d5d2a8ef429789d8c6158bdf8023f395501fbfc8137cc22')
prepare() {
cd "$srcdir/$pkgname-v$pkgver"
patch -Np1 -i ../icu59.patch
}
build() {
cd "$srcdir/$pkgname-v$pkgver"
PYTHON=python2
scons configure \
PREFIX="/usr" \
INPUT_PLUGINS=all \
XMLPARSER=libxml2 \
DESTDIR="$pkgdir" \
CUSTOM_CXXFLAGS="-DBOOST_OPTIONAL_CONFIG_USE_OLD_IMPLEMENTATION_OF_OPTIONAL"
scons -j1 $MAKEFLAGS
}
package(){
cd "$srcdir/$pkgname-v$pkgver"
scons install
}
|