2021-10-18 15:25:31 +02:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# modsecurity2
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2021-12-17 22:21:45 +01:00
|
|
|
MODSECURITY2_VERSION = 2.9.5
|
|
|
|
MODSECURITY2_SOURCE = modsecurity-$(MODSECURITY2_VERSION).tar.gz
|
|
|
|
MODSECURITY2_SITE = https://github.com/SpiderLabs/ModSecurity/releases/download/v$(MODSECURITY2_VERSION)
|
2021-10-18 15:25:31 +02:00
|
|
|
MODSECURITY2_LICENSE = Apache-2.0
|
|
|
|
MODSECURITY2_LICENSE_FILES = LICENSE
|
2021-12-17 22:20:15 +01:00
|
|
|
MODSECURITY2_CPE_ID_VENDOR = trustwave
|
|
|
|
MODSECURITY2_CPE_ID_PRODUCT = modsecurity
|
2021-10-18 15:25:31 +02:00
|
|
|
MODSECURITY2_INSTALL_STAGING = YES
|
|
|
|
MODSECURITY2_DEPENDENCIES = apache libxml2 pcre
|
|
|
|
|
|
|
|
MODSECURITY2_CONF_OPTS = \
|
|
|
|
--with-pcre=$(STAGING_DIR)/usr/bin/pcre-config \
|
|
|
|
--with-libxml=$(STAGING_DIR)/usr \
|
|
|
|
--with-apr=$(STAGING_DIR)/usr/bin/apr-1-config \
|
|
|
|
--with-apu=$(STAGING_DIR)/usr/bin/apu-1-config \
|
|
|
|
--with-apxs=$(STAGING_DIR)/usr/bin/apxs \
|
|
|
|
--without-curl \
|
|
|
|
--without-lua \
|
|
|
|
--without-yajl \
|
|
|
|
--without-ssdeep
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|