blob: ab7e562e98aca998f745a1791b9b0c1cb45b5792 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/usr/bin/make
PKG = swidGenerator
ZIP = $(PKG)-master.zip
SRC = https://github.com/tnc-ba/$(PKG)/archive/master.zip
all: install
$(ZIP):
wget --ca-directory="/usr/share/ca-certificates/mozilla" $(SRC) -O $(ZIP)
$(PKG)-master: $(ZIP)
unzip $(ZIP)
install: $(PKG)-master
cd $(PKG)-master && python setup.py install
|