summaryrefslogtreecommitdiff
path: root/testing/scripts/recipes/004_wpa_supplicant.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/004_wpa_supplicant.mk
parent69bc96f6b0b388d35e983f8d27224fa49d92918c (diff)
downloadvyos-strongswan-918094fde55fa0dbfd59a5f88d576efb513a88db.tar.gz
vyos-strongswan-918094fde55fa0dbfd59a5f88d576efb513a88db.zip
New upstream version 5.7.2
Diffstat (limited to 'testing/scripts/recipes/004_wpa_supplicant.mk')
-rw-r--r--testing/scripts/recipes/004_wpa_supplicant.mk39
1 files changed, 0 insertions, 39 deletions
diff --git a/testing/scripts/recipes/004_wpa_supplicant.mk b/testing/scripts/recipes/004_wpa_supplicant.mk
deleted file mode 100644
index 4cc870c12..000000000
--- a/testing/scripts/recipes/004_wpa_supplicant.mk
+++ /dev/null
@@ -1,39 +0,0 @@
-#!/usr/bin/make
-
-PV = 2.0
-PKG = wpa_supplicant-$(PV)
-TAR = $(PKG).tar.gz
-SRC = http://w1.fi/releases/$(TAR)
-
-NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
-
-CONFIG_OPTS =
-
-PATCHES = \
- wpa_supplicant-eap-tnc
-
-SUBDIR = wpa_supplicant
-
-all: install
-
-$(TAR):
- wget $(SRC)
-
-.$(PKG)-unpacked: $(TAR)
- tar xfz $(TAR)
- @touch $@
-
-.$(PKG)-patches-applied: .$(PKG)-unpacked
- cd $(PKG) && cat $(addprefix ../patches/, $(PATCHES)) | patch -p1
- @touch $@
-
-.$(PKG)-configured: .$(PKG)-patches-applied
- cp $(PKG)/$(SUBDIR)/defconfig $(PKG)/$(SUBDIR)/.config
- @touch $@
-
-.$(PKG)-built: .$(PKG)-configured
- cd $(PKG)/$(SUBDIR) && make -j $(NUM_CPUS)
- @touch $@
-
-install: .$(PKG)-built
- cd $(PKG)/$(SUBDIR) && make install