563f586e9a
flickcurl does not specifically need openssl: it needs libcurl to have crypto support to access https:// URLs. So, instead of depending on openssl in FLICKCURL_DEPENDENCIES, this commit simply leaves it to the Config.in file to select either OpenSSL, gnutls or libnss to make sure libcurl will use one of these libraries. Reported-by: Peter Korsgaard <peter@korsgaard.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
24 lines
845 B
Makefile
24 lines
845 B
Makefile
################################################################################
|
|
#
|
|
# flickcurl
|
|
#
|
|
################################################################################
|
|
|
|
FLICKCURL_VERSION = 1.25
|
|
FLICKCURL_SITE = http://download.dajobe.org/flickcurl/
|
|
FLICKCURL_LICENSE = LGPLv2.1+ or GPLv2+ or Apache 2.0+
|
|
FLICKCURL_LICENSE_FILES = COPYING COPYING.LIB LICENSE-2.0.txt LICENSE.html
|
|
FLICKCURL_INSTALL_STAGING = YES
|
|
FLICKCURL_CONFIG_SCRIPTS = flickcurl-config
|
|
FLICKCURL_CONF_OPT = --without-curl-config --without-xml2-config --without-raptor
|
|
FLICKCURL_DEPENDENCIES = libcurl libxml2 host-pkgconf
|
|
|
|
ifeq ($(BR2_PACKAGE_FLICKCURL_UTILS),)
|
|
define FLICKCURL_REMOVE_UTILS
|
|
rm -f $(TARGET_DIR)/usr/bin/flickcurl $(TARGET_DIR)/usr/bin/flickrdf
|
|
endef
|
|
FLICKCURL_POST_INSTALL_TARGET_HOOKS += FLICKCURL_REMOVE_UTILS
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|