buildroot/package/c-icap-modules/c-icap-modules.mk
Fabrice Fontaine 77657f36de package/c-icap-modules: bump to version 0.5.3
- Remove zlib option (dropped since version 0.5.1 and
  51e78cf08a)
- Add hash for license file

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be>
2019-09-24 23:14:06 +02:00

26 lines
744 B
Makefile

################################################################################
#
# c-icap-modules
#
################################################################################
C_ICAP_MODULES_VERSION = 0.5.3
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 = GPL-2.0+
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_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))