wok view gdal/receipt @ rev 12782

Up gogglesmm (0.12.6)
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue May 15 10:39:16 2012 +0200 (2012-05-15)
parents 2ac75a433b01
children f473b2ca85de
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 && make && make install BINDINGS="perl python"
28 }
30 # Rules to gen a SliTaz package suitable for Tazpkg.
31 genpkg_rules()
32 {
33 mkdir $fs/usr
35 }