wok view gdal/receipt @ rev 15062

gdal: remove wrong error trigger
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Aug 13 10:55:49 2013 +0000 (2013-08-13)
parents 9c29a6103d36
children 7bb096863642
line source
1 # SliTaz package receipt.
3 PACKAGE="gdal"
4 VERSION="1.9.0"
5 CATEGORY="meta"
6 SHORT_DESC="Geospatial Data Abstraction Library."
7 MAINTAINER="erjo@slitaz.org"
8 WEB_SITE="http://www.gdal.org/"
9 TARBALL="$PACKAGE-$VERSION.tar.gz"
10 WGET_URL="http://download.osgeo.org/gdal/$TARBALL"
12 DEPENDS="libgdal gdal-bin gdal-datas"
13 BUILD_DEPENDS="python-dev postgresql-dev geos-dev proj-dev curl-dev \
14 swig "
16 # Rules to configure and make the package.
17 compile_rules()
18 {
19 ./configure --sysconfdir=/etc \
20 --localstatedir=/var \
21 --datadir=/usr/share/gdal \
22 --with-threads \
23 --with-perl \
24 --with-python \
25 --with-geos \
26 --with-sqlite3=no \
27 --with-ogr 2>&1 | grep -v config.rpath &&
28 make && make install BINDINGS="perl python"
29 }
31 # Rules to gen a SliTaz package suitable for Tazpkg.
32 genpkg_rules()
33 {
34 mkdir $fs/usr
36 }