2016-02-05 23:43:12 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# pound
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2018-08-19 20:26:57 +02:00
|
|
|
POUND_VERSION = 2.8
|
2016-02-05 23:43:12 +01:00
|
|
|
POUND_SITE = http://www.apsis.ch/pound
|
|
|
|
POUND_SOURCE = Pound-$(POUND_VERSION).tgz
|
2017-03-30 15:43:33 +02:00
|
|
|
POUND_LICENSE = GPL-3.0+
|
2016-02-05 23:43:12 +01:00
|
|
|
POUND_LICENSE_FILES = GPL.txt
|
2019-02-05 18:07:36 +01:00
|
|
|
POUND_DEPENDENCIES = openssl host-openssl
|
2016-02-05 23:43:12 +01:00
|
|
|
|
|
|
|
# Force owner/group to us, otherwise it will try proxy:proxy by
|
|
|
|
# default.
|
|
|
|
POUND_CONF_OPTS = \
|
|
|
|
--with-owner=$(shell id -un) \
|
|
|
|
--with-group=$(shell id -gn)
|
|
|
|
|
|
|
|
ifeq ($(BR2_PACKAGE_PCRE),y)
|
|
|
|
POUND_DEPENDENCIES += pcre
|
|
|
|
endif
|
|
|
|
|
|
|
|
$(eval $(autotools-package))
|