1edf0383a6
Removed patches applied upstream:2fbae8298d
b5895ac935
edc9ec69b4
Updated upstream URL in Config.in due to the upstream switch to github: https://trac.osgeo.org/geotiff/ Updated license hash after upstream commit:e3dd2e1bf1
proj 6 is now a mandatory dependency:a052681788
Signed-off-by: Bernd Kuhls <bernd.kuhls@t-online.de> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
813 B
Makefile
30 lines
813 B
Makefile
################################################################################
|
|
#
|
|
# libgeotiff
|
|
#
|
|
################################################################################
|
|
|
|
LIBGEOTIFF_VERSION = 1.5.1
|
|
LIBGEOTIFF_SITE = http://download.osgeo.org/geotiff/libgeotiff
|
|
LIBGEOTIFF_LICENSE = X11-style, public domain
|
|
LIBGEOTIFF_LICENSE_FILES = LICENSE
|
|
LIBGEOTIFF_DEPENDENCIES = proj tiff host-pkgconf
|
|
LIBGEOTIFF_INSTALL_STAGING = YES
|
|
LIBGEOTIFF_CONF_OPTS = --with-proj=$(STAGING_DIR)/usr
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
LIBGEOTIFF_DEPENDENCIES += zlib
|
|
LIBGEOTIFF_CONF_OPTS += --with-zlib
|
|
else
|
|
LIBGEOTIFF_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_JPEG),y)
|
|
LIBGEOTIFF_DEPENDENCIES += jpeg
|
|
LIBGEOTIFF_CONF_OPTS += --with-jpeg
|
|
else
|
|
LIBGEOTIFF_CONF_OPTS += --without-jpeg
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|