wok annotate gdal/receipt @ rev 22649

updated djview (4.10.3 -> 4.10.6)
author Hans-G?nter Theisgen
date Tue Jan 14 13:39:45 2020 +0100 (2020-01-14)
parents d37d15244372
children a3c45ab9082e
rev   line source
pascal@11640 1 # SliTaz package receipt.
pascal@11640 2
pascal@11640 3 PACKAGE="gdal"
pascal@11640 4 VERSION="1.9.0"
erjo@11646 5 CATEGORY="meta"
pascal@11640 6 SHORT_DESC="Geospatial Data Abstraction Library."
pascal@11640 7 MAINTAINER="erjo@slitaz.org"
pascal@15215 8 LICENSE="MIT"
pascal@20669 9 WEB_SITE="https://www.gdal.org/"
pascal@11640 10 TARBALL="$PACKAGE-$VERSION.tar.gz"
pascal@11640 11 WGET_URL="http://download.osgeo.org/gdal/$TARBALL"
pascal@11640 12
erjo@11646 13 DEPENDS="libgdal gdal-bin gdal-datas"
erjo@11646 14 BUILD_DEPENDS="python-dev postgresql-dev geos-dev proj-dev curl-dev \
pascal@20585 15 swig tiff-dev jasper-dev jpeg-dev file"
pascal@11640 16
pascal@11640 17 # Rules to configure and make the package.
pascal@11640 18 compile_rules()
pascal@11640 19 {
erjo@11646 20 ./configure --sysconfdir=/etc \
erjo@11646 21 --localstatedir=/var \
erjo@11646 22 --datadir=/usr/share/gdal \
erjo@11646 23 --with-threads \
erjo@11646 24 --with-perl \
erjo@11646 25 --with-python \
erjo@11646 26 --with-geos \
erjo@11646 27 --with-sqlite3=no \
pascal@15062 28 --with-ogr 2>&1 | grep -v config.rpath &&
pascal@15062 29 make && make install BINDINGS="perl python"
pascal@11640 30 }
pascal@11640 31
pascal@11640 32 # Rules to gen a SliTaz package suitable for Tazpkg.
pascal@11640 33 genpkg_rules()
pascal@11640 34 {
erjo@11646 35 mkdir $fs/usr
erjo@11646 36
pascal@11640 37 }