mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
0.5.7: https://sourceforge.net/p/c-icap/mailman/message/58723534/ "The newer c-icap-0.5.12 or c-icap-0.6.2 c-icap release is also required." 0.5.6: https://sourceforge.net/p/c-icap/mailman/message/40461114/ Signed-off-by: Bernd Kuhls <bernd@kuhls.net> Signed-off-by: Julien Olivain <ju.o@free.fr>
26 lines
744 B
Makefile
26 lines
744 B
Makefile
################################################################################
|
|
#
|
|
# c-icap-modules
|
|
#
|
|
################################################################################
|
|
|
|
C_ICAP_MODULES_VERSION = 0.5.7
|
|
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))
|