7b0e757fb8
The recommended form is without the trailing slash, and will become mandatory in a coming commit. This avoids the need for the $$($(2)_SITE:/=) magic in package/pkg-generic.mk to avoid double slashes in download URLs, like "https://mosh.mit.edu//mosh-1.2.5.tar.gz". ^^ Note: this work has already been done inb0b9606530
a few months ago and earlier inc7f4b96471
and4a9eb20de8
, but no check has been added at that time to avoid new slashes to slip in, and so they did. This time a patch will follow immediately to prevent future mistakes from being unnoticed. Mass-replaced with the following command: git grep -l '_SITE.*/$' | xargs sed -i '/_SITE.*=/s|/$||' Signed-off-by: Luca Ceresoli <luca@lucaceresoli.net> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
33 lines
902 B
Makefile
33 lines
902 B
Makefile
################################################################################
|
|
#
|
|
# c-icap-modules
|
|
#
|
|
################################################################################
|
|
|
|
C_ICAP_MODULES_VERSION = 0.3.2
|
|
C_ICAP_MODULES_SOURCE = c_icap_modules-$(C_ICAP_MODULES_VERSION).tar.gz
|
|
C_ICAP_MODULES_SITE = http://downloads.sourceforge.net/c-icap
|
|
C_ICAP_MODULES_LICENSE = GPLv2+
|
|
C_ICAP_MODULES_LICENSE_FILES = COPYING
|
|
C_ICAP_MODULES_DEPENDENCIES = c-icap
|
|
|
|
C_ICAP_MODULES_CONF_OPTS = \
|
|
--with-c-icap=$(STAGING_DIR)/usr/ \
|
|
--without-clamav
|
|
|
|
ifeq ($(BR2_PACKAGE_ZLIB),y)
|
|
C_ICAP_MODULES_CONF_OPTS += --with-zlib
|
|
C_ICAP_MODULES_DEPENDENCIES += zlib
|
|
else
|
|
C_ICAP_MODULES_CONF_OPTS += --without-zlib
|
|
endif
|
|
|
|
ifeq ($(BR2_PACKAGE_BERKELEYDB),y)
|
|
C_ICAP_MODULES_CONF_OPTS += --with-bdb
|
|
C_ICAP_MODULES_DEPENDENCIES += berkeleydb
|
|
else
|
|
C_ICAP_MODULES_CONF_OPTS += --without-bdb
|
|
endif
|
|
|
|
$(eval $(autotools-package))
|