From f10f7fe2616ba76b81d5b03c633402181711221d Mon Sep 17 00:00:00 2001 From: Reto Buerki Date: Fri, 25 Jan 2013 10:33:46 +0100 Subject: [PATCH] Provide script to build Ada XFRM proxy --- testing/scripts/recipes/011_xfrm-proxy.mk | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 testing/scripts/recipes/011_xfrm-proxy.mk diff --git a/testing/scripts/recipes/011_xfrm-proxy.mk b/testing/scripts/recipes/011_xfrm-proxy.mk new file mode 100644 index 0000000000..aea69703dd --- /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 -- 2.47.2