diff options
author | Reto Buerki <reet@codelabs.ch> | 2013-01-25 10:33:46 +0100 |
---|---|---|
committer | Tobias Brunner <tobias@strongswan.org> | 2013-03-19 15:23:50 +0100 |
commit | f10f7fe2616ba76b81d5b03c633402181711221d (patch) | |
tree | aa10d4a6bc69f28f9503add9c621d2e123ef66b0 | |
parent | 3150dbd3e3d7ff551e633eaa03991f6d1826eb7c (diff) | |
download | strongswan-f10f7fe2616ba76b81d5b03c633402181711221d.tar.bz2 strongswan-f10f7fe2616ba76b81d5b03c633402181711221d.tar.xz |
Provide script to build Ada XFRM proxy
-rw-r--r-- | testing/scripts/recipes/011_xfrm-proxy.mk | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/testing/scripts/recipes/011_xfrm-proxy.mk b/testing/scripts/recipes/011_xfrm-proxy.mk new file mode 100644 index 000000000..aea69703d --- /dev/null +++ b/testing/scripts/recipes/011_xfrm-proxy.mk @@ -0,0 +1,21 @@ +#!/usr/bin/make + +PKG = xfrm-proxy +SRC = http://git.codelabs.ch/git/$(PKG).git +REV = v0.1 + +export ADA_PROJECT_PATH=/root/libraries/lib/gnat + +all: install + +.$(PKG)-cloned: + git clone $(SRC) $(PKG) + cd $(PKG) && git checkout $(REV) + @touch $@ + +.$(PKG)-built: .$(PKG)-cloned + cd $(PKG) && make + @touch $@ + +install: .$(PKG)-built + cd $(PKG) && make install |