| 12345678910111213141516171819202122 | #!/usr/bin/makePKG = strongTNCZIP = $(PKG)-master.zipSRC = https://github.com/strongswan/$(PKG)/archive/master.zipDEPS = $(PKG)-depsall: install$(ZIP):	wget --ca-directory=/usr/share/ca-certificates/mozilla/ $(SRC) -O $(ZIP)$(PKG)-master: $(ZIP)	unzip -u $(ZIP)$(DEPS): $(PKG)-master	mkdir -p $(DEPS)	pip install --download $(DEPS) -r $(PKG)-master/requirements.txtinstall: $(DEPS)	pip install --no-index --find-links=file://`pwd`/$(DEPS) -r $(PKG)-master/requirements.txt	cp -r $(PKG)-master /var/www/tnc && chgrp -R www-data /var/www/tnc && chmod g+sw /var/www/tnc
 |