package/proj: bump to version 7.0.1

- curl and tiff are optional dependencies since version 7.0.0 and
  db31b6dfa9
- Update indentation of hash file (two spaces)

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Fabrice Fontaine 2020-05-01 15:14:02 +02:00 committed by Yann E. MORIN
parent 72fb9b2fb8
commit 81ac873097
2 changed files with 19 additions and 5 deletions

View File

@ -1,5 +1,5 @@
# Fetched from http://download.osgeo.org/proj/proj-6.3.0.tar.gz.md5
md5 09243feb4f243a2bdd455035a2007384 proj-6.3.0.tar.gz
# Fetched from http://download.osgeo.org/proj/proj-7.0.1.tar.gz.md5
md5 5ba7536b579a6c9e0ad822dbdd455985 proj-7.0.1.tar.gz
# Locally calculated
sha256 68ce9ba0005d442c2c1d238a3b9bc6654c358159b4af467b91e8d5b407c79c77 proj-6.3.0.tar.gz
sha256 2dcac4af6990093ef48b896bfb81452d46a31b08d46cce34b27e83f93b2e37f6 COPYING
sha256 a7026d39c9c80d51565cfc4b33d22631c11e491004e19020b3ff5a0791e1779f proj-7.0.1.tar.gz
sha256 2dcac4af6990093ef48b896bfb81452d46a31b08d46cce34b27e83f93b2e37f6 COPYING

View File

@ -4,7 +4,7 @@
#
################################################################################
PROJ_VERSION = 6.3.0
PROJ_VERSION = 7.0.1
PROJ_SITE = http://download.osgeo.org/proj
PROJ_LICENSE = MIT
PROJ_LICENSE_FILES = COPYING
@ -23,4 +23,18 @@ PROJ_CONF_ENV = \
CFLAGS="$(PROJ_CFLAGS)" \
CXXFLAGS="$(PROJ_CXXFLAGS)"
ifeq ($(BR2_PACKAGE_LIBCURL),y)
PROJ_DEPENDENCIES += libcurl
PROJ_CONF_OPTS += --with-curl=$(STAGING_DIR)/usr/bin/curl-config
else
PROJ_CONF_OPTS += --without-curl
endif
ifeq ($(BR2_PACKAGE_TIFF),y)
PROJ_DEPENDENCIES += tiff
PROJ_CONF_OPTS += --enable-tiff
else
PROJ_CONF_OPTS += --disable-tiff
endif
$(eval $(autotools-package))