wok-undigest annotate 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
rev   line source
erjo@622 1 # SliTaz package receipt.
erjo@622 2
erjo@622 3 PACKAGE="gdal"
erjo@622 4 VERSION="1.9.0"
@624 5 CATEGORY="meta"
erjo@622 6 SHORT_DESC="Geospatial Data Abstraction Library."
erjo@622 7 MAINTAINER="erjo@slitaz.org"
erjo@622 8 WEB_SITE="http://www.gdal.org/"
erjo@622 9 TARBALL="$PACKAGE-$VERSION.tar.gz"
erjo@622 10 WGET_URL="http://download.osgeo.org/gdal/$TARBALL"
erjo@622 11
@624 12 DEPENDS="libgdal gdal-bin gdal-datas"
@624 13 BUILD_DEPENDS="postgresql-dev geos-dev proj-dev curl-dev"
erjo@622 14
erjo@622 15 # Rules to configure and make the package.
erjo@622 16 compile_rules()
erjo@622 17 {
@624 18 ./configure --sysconfdir=/etc \
@624 19 --localstatedir=/var \
@624 20 --datadir=/usr/share/gdal \
@624 21 --with-threads \
@624 22 --with-perl \
@624 23 --with-geos \
@624 24 --with-sqlite3=no \
@624 25 --with-ogr && make && make install
erjo@622 26 }
erjo@622 27
erjo@622 28 # Rules to gen a SliTaz package suitable for Tazpkg.
erjo@622 29 genpkg_rules()
erjo@622 30 {
@624 31 mkdir $fs/usr
erjo@622 32 }