wok-undigest view gdal/receipt @ rev 624

gdal: split package
author Eric Joseph-Alexandre < erjo@slitaz.org>
date Wed Feb 01 23:50:31 2012 +0100 (2012-02-01)
parents 3962b96a13b8
children 634858a7b84c
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="postgresql-dev geos-dev proj-dev curl-dev"
15 # Rules to configure and make the package.
16 compile_rules()
17 {
18 ./configure --sysconfdir=/etc \
19 --localstatedir=/var \
20 --datadir=/usr/share/gdal \
21 --with-threads \
22 --with-perl \
23 --with-geos \
24 --with-sqlite3=no \
25 --with-ogr && make && make install
26 }
28 # Rules to gen a SliTaz package suitable for Tazpkg.
29 genpkg_rules()
30 {
31 mkdir $fs/usr
32 }