e5c392830e
[Thomas: taken from Mischa original github patch.] Signed-off-by: Mischa Jonker <mjonker@synopsys.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Acked-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Tested-by: Thomas De Schampheleire <thomas.de.schampheleire@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
21 lines
526 B
Makefile
21 lines
526 B
Makefile
################################################################################
|
|
#
|
|
# xl2tp
|
|
#
|
|
################################################################################
|
|
|
|
XL2TP_VERSION = v1.3.1
|
|
XL2TP_SITE = $(call github,xelerance,xl2tpd,$(XL2TP_VERSION))
|
|
XL2TP_DEPENDENCIES = libpcap
|
|
|
|
define XL2TP_BUILD_CMDS
|
|
$(SED) 's/ -O2 //' $(@D)/Makefile
|
|
$(TARGET_CONFIGURE_OPTS) $(MAKE) -C $(@D)
|
|
endef
|
|
|
|
define XL2TP_INSTALL_TARGET_CMDS
|
|
$(MAKE) DESTDIR=$(TARGET_DIR) PREFIX=/usr -C $(@D) install
|
|
endef
|
|
|
|
$(eval $(generic-package))
|