summaryrefslogtreecommitdiff
path: root/testing/scripts/recipes/002_tnc-fhh.mk
diff options
context:
space:
mode:
authorYves-Alexis Perez <corsac@debian.org>2019-01-02 10:45:36 +0100
committerYves-Alexis Perez <corsac@debian.org>2019-01-02 11:07:05 +0100
commit918094fde55fa0dbfd59a5f88d576efb513a88db (patch)
tree61e31656c60a6cc928c50cd633568043673e2cbd /testing/scripts/recipes/002_tnc-fhh.mk
parent69bc96f6b0b388d35e983f8d27224fa49d92918c (diff)
downloadvyos-strongswan-918094fde55fa0dbfd59a5f88d576efb513a88db.tar.gz
vyos-strongswan-918094fde55fa0dbfd59a5f88d576efb513a88db.zip
New upstream version 5.7.2
Diffstat (limited to 'testing/scripts/recipes/002_tnc-fhh.mk')
-rw-r--r--testing/scripts/recipes/002_tnc-fhh.mk35
1 files changed, 0 insertions, 35 deletions
diff --git a/testing/scripts/recipes/002_tnc-fhh.mk b/testing/scripts/recipes/002_tnc-fhh.mk
deleted file mode 100644
index d4ed4f99c..000000000
--- a/testing/scripts/recipes/002_tnc-fhh.mk
+++ /dev/null
@@ -1,35 +0,0 @@
-#!/usr/bin/make
-
-PKG = fhhtnc
-SRC = git://github.com/trustatfhh/tnc-fhh.git
-
-NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
-
-CONFIG_OPTS = \
- -DCOMPONENT=all \
- -DNAL=8021x
-
-PATCHES = \
- tnc-fhh-tncsim
-
-all: install
-
-.$(PKG)-cloned:
- git clone $(SRC) $(PKG)
- mkdir $(PKG)/build
- @touch $@
-
-.$(PKG)-patches-applied: .$(PKG)-cloned
- cd $(PKG) && cat $(addprefix ../patches/, $(PATCHES)) | patch -p1
- @touch $@
-
-.$(PKG)-configured: .$(PKG)-patches-applied
- cd $(PKG)/build && cmake $(CONFIG_OPTS) ../
- @touch $@
-
-.$(PKG)-built: .$(PKG)-configured
- cd $(PKG)/build && make -j $(NUM_CPUS)
- @touch $@
-
-install: .$(PKG)-built
- cd $(PKG)/build && make install