diff options
author | Benjamin Trigona-Harany <slackbuilds@jaxartes.net> | 2021-05-12 07:37:07 +0200 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2021-05-18 23:42:10 +0700 |
commit | 3ebf2e75e36648b4128b8910a324d90e39e93339 (patch) | |
tree | c1aa41dde108446e59ced316630283450f06b336 /gis/gdal/gdal.SlackBuild | |
parent | 8b22be9310bd72631a7ee8f8f6342c68542ac02f (diff) |
gis/gdal: Updated for version 3.3.0.
Signed-off-by: Benjamin Trigona-Harany <slackbuilds@jaxartes.net>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'gis/gdal/gdal.SlackBuild')
-rw-r--r-- | gis/gdal/gdal.SlackBuild | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/gis/gdal/gdal.SlackBuild b/gis/gdal/gdal.SlackBuild index bb308d51b20ad..aec21ec785dd8 100644 --- a/gis/gdal/gdal.SlackBuild +++ b/gis/gdal/gdal.SlackBuild @@ -26,7 +26,7 @@ # Maintained by David Spencer <baildon.research@googlemail.com> PRGNAM=gdal -VERSION=${VERSION:-3.2.2} +VERSION=${VERSION:-3.3.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -86,14 +86,9 @@ if pkg-config --exists libwebp; then WITHLIST+=" --with-webp" fi -# Spatialite support in gdal optionally has a circular dependency -# via the postgis 'liblwgeom' library (postgis depends on gdal). -# Here is an undocumented option to request Spatialite support, -# if you promise to be careful :-) +# Spatialite support if package is installed: if pkg-config --exists spatialite; then - if [ ${SPATIALITE:-no} = "yes" ]; then - WITHLIST+=" --with-spatialite" - fi + WITHLIST+=" --with-spatialite" fi # Also, enabling Grass support in gdal introduces a circular dependency, @@ -130,6 +125,7 @@ CXXFLAGS="$SLKCFLAGS" \ --with-libz=/usr/lib${LIBDIRSUFFIX} \ --with-liblzma \ --with-curl=/usr/bin/curl-config \ + --with-crypto=yes \ --without-grib \ --with-static-proj4 \ --with-mysql \ |