Files
strongswan-ext/testing/scripts/recipes/010_tkm.mk
T
Tobias Brunner 92ef3c2f21 testing: Update tkm to version 0.1.3
Adds XFRM state/policy flush when terminating which caused tests to fail
due to the check added with 9086f060d3 ("testing: Let test scenarios
fail if IPsec SAs or policies are not removed").
2015-10-30 11:19:44 +01:00

24 lines
403 B
Makefile

#!/usr/bin/make
PKG = tkm
SRC = http://git.codelabs.ch/git/$(PKG).git
REV = v0.1.3
export ADA_PROJECT_PATH=/usr/local/ada/lib/gnat
all: install
$(PKG):
git clone $(SRC) $(PKG)
.$(PKG)-cloned-$(REV): $(PKG)
cd $(PKG) && git fetch && git checkout $(REV)
@touch $@
.$(PKG)-built-$(REV): .$(PKG)-cloned-$(REV)
cd $(PKG) && make
@touch $@
install: .$(PKG)-built-$(REV)
cd $(PKG) && make install