xref: /OK3568_Linux_fs/buildroot/package/pound/pound.mk (revision 4882a59341e53eb6f0b4789bf948001014eff981)
1################################################################################
2#
3# pound
4#
5################################################################################
6
7POUND_VERSION = 2.8
8POUND_SITE = http://www.apsis.ch/pound
9POUND_SOURCE = Pound-$(POUND_VERSION).tgz
10POUND_LICENSE = GPL-3.0+
11POUND_LICENSE_FILES = GPL.txt
12POUND_DEPENDENCIES = openssl host-openssl
13
14# Force owner/group to us, otherwise it will try proxy:proxy by
15# default.
16POUND_CONF_OPTS = \
17	--with-owner=$(shell id -un) \
18	--with-group=$(shell id -gn)
19
20ifeq ($(BR2_PACKAGE_PCRE),y)
21POUND_DEPENDENCIES += pcre
22endif
23
24$(eval $(autotools-package))
25