kumquat-buildroot/package/xl2tp/xl2tp.mk
Fabrice Fontaine aa1a33027f package/xl2tp: bump to version 1.3.17
https://github.com/xelerance/xl2tpd/releases/tag/v1.3.17

Signed-off-by: Fabrice Fontaine <fontaine.fabrice@gmail.com>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
2022-01-23 20:49:21 +01:00

28 lines
774 B
Makefile

################################################################################
#
# xl2tp
#
################################################################################
XL2TP_VERSION = 1.3.17
XL2TP_SITE = $(call github,xelerance,xl2tpd,v$(XL2TP_VERSION))
XL2TP_DEPENDENCIES = libpcap
XL2TP_LICENSE = GPL-2.0
XL2TP_LICENSE_FILES = LICENSE
XL2TP_SELINUX_MODULES = l2tp
ifeq ($(BR2_STATIC_LIBS),y)
XL2TP_LDLIBS = LDLIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
endif
define XL2TP_BUILD_CMDS
$(SED) 's/ -O2 //' $(@D)/Makefile
$(TARGET_CONFIGURE_OPTS) $(MAKE) $(XL2TP_LDLIBS) -C $(@D)
endef
define XL2TP_INSTALL_TARGET_CMDS
$(TARGET_CONFIGURE_OPTS) $(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr -C $(@D) install
endef
$(eval $(generic-package))