Apparently, djangorestframework-camel-case, in the referenced version, uses `six` but does not itself require/install it (later versions removed Python 2 support altogether).
24 lines
643 B
Makefile
24 lines
643 B
Makefile
#!/usr/bin/make
|
|
|
|
PKG = strongTNC
|
|
ZIP = $(PKG)-master.zip
|
|
SRC = https://github.com/strongswan/$(PKG)/archive/master.zip
|
|
DEPS = $(PKG)-deps
|
|
|
|
all: 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 download -d $(DEPS) -r $(PKG)-master/requirements.txt six
|
|
|
|
install: $(DEPS)
|
|
# six is required for djangorestframework-camel-case
|
|
pip install --no-index --find-links=file://`pwd`/$(DEPS) -r $(PKG)-master/requirements.txt six
|
|
cp -r $(PKG)-master /var/www/tnc && chgrp -R www-data /var/www/tnc && chmod g+sw /var/www/tnc
|