aboutsummaryrefslogtreecommitdiffstats
path: root/testing/scripts/recipes/015_strongTNC.mk
blob: 6746b9145da1ca88fb318068c9e7f87b786a3037 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/usr/bin/make

PKG = strongTNC
ZIP = $(PKG)-master.zip
SRC = https://github.com/strongswan/$(PKG)/archive/master.zip

all: install

$(ZIP):
	wget --ca-directory=/usr/share/ca-certificates/mozilla/ $(SRC) -O $(ZIP)

$(PKG)-master: $(ZIP)
	unzip -u $(ZIP)

install: $(PKG)-master
	cd $(PKG)-master && pip install -r requirements.txt
	cp -r $(PKG)-master /var/www/tnc && chgrp -R www-data /var/www/tnc