wok-undigest view mapserver/receipt @ rev 745

mapserver: update bdeps
author Pascal Bellard <pascal.bellard@slitaz.org>
date Mon Jul 09 22:04:02 2012 +0200 (2012-07-09)
parents a88dc90d14cd
children
line source
1 # SliTaz package receipt.
3 PACKAGE="mapserver"
4 VERSION="6.0.1"
5 CATEGORY="misc"
6 SHORT_DESC="Open Source platform for publishing spatial data."
7 MAINTAINER="erjo@slitaz.org"
8 WEB_SITE="mapserver.org"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://download.osgeo.org/mapserver/$TARBALL"
12 DEPENDS="giflib libgd jpeg libpng"
13 BUILD_DEPENDS="giflib-dev libgd-dev proj-dev postgresql-dev curl-dev geos-dev \
14 libpng-dev jpeg-dev tiff"
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure \
20 --with-threads \
21 --with-proj \
22 --with-postgis \
23 --with-geos \
24 $CONFIGURE_ARGS && make
26 #~
27 #~ \
28 #~ --with-mapscript \
29 #~ --with-gdal \
30 #~ --with-ogr \
31 #~ --with-wmsclient\
32 #~ --with-wfs \
33 #~ --with-wfsclient \
34 }
36 # Rules to gen a SliTaz package suitable for Tazpkg.
37 genpkg_rules()
38 {
39 mkdir -p $fs/usr/share/mapserver
40 cp -a $src/mapserv $fs/usr/share/mapserver
41 }