Files
strongswan-ext/testing/scripts/recipes/014_swid_generator.mk
T
Andreas Steffen 3e2841572b testing: Switch to Python 3
Both swidGenerator and strongTNC were migrated to Python 3.
This allows to migrate all testing scripts to Python 3, too.
2021-09-21 09:47:43 +02:00

21 lines
536 B
Makefile

#!/usr/bin/make
PKG = swidGenerator
REV = v1.1.0
DIR = $(PKG)-$(REV)
TAR = $(PKG)-$(REV).tar.gz
SRC = https://github.com/strongswan/$(PKG)/archive/$(REV).tar.gz
all: install
$(TAR):
wget --ca-directory="/usr/share/ca-certificates/mozilla" $(SRC) -O $(TAR)
.$(PKG)-unpacked-$(REV): $(TAR)
# a tag's "v" prefix is not reflected in the directory name in the archive
[ -d $(DIR) ] || (mkdir -p $(DIR); tar -xf $(TAR) --strip-components=1 -C $(DIR))
@touch $@
install: .$(PKG)-unpacked-$(REV)
cd $(DIR) && python3 setup.py install