0ddbe7f536
This patch adds davici which is an alternative implementation of the VICI client protocal used by Strongswan. It targets better integration with software stacks and uses a asynchronous, non-blocking API that can be integrated in third-party main dispatching loops without the use of threads. Signed-off-by: Jared Bents <jared.bents@rockwellcollins.com> [Thomas: fix license, it's LGPL-2.1+, add entry in DEVELOPERS file.] Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
21 lines
531 B
Makefile
21 lines
531 B
Makefile
################################################################################
|
|
#
|
|
# davici
|
|
#
|
|
################################################################################
|
|
|
|
DAVICI_VERSION = v1.3
|
|
DAVICI_SITE = $(call github,strongswan,davici,$(DAVICI_VERSION))
|
|
DAVICI_LICENSE = LGPL-2.1+
|
|
DAVICI_LICENSE_FILES = COPYING
|
|
DAVICI_DEPENDENCIES = strongswan
|
|
DAVICI_INSTALL_STAGING = YES
|
|
DAVICI_AUTORECONF = YES
|
|
|
|
define DAVICI_CREATE_M4
|
|
mkdir -p $(@D)/m4
|
|
endef
|
|
DAVICI_POST_PATCH_HOOKS += DAVICI_CREATE_M4
|
|
|
|
$(eval $(autotools-package))
|