diff options
author | Christian Pointner <equinox@helsinki.at> | 2020-03-21 18:08:04 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2020-03-21 18:08:04 (GMT) |
commit | c0bf1913e9d32bd15776cc5b1867a57a0c01362d (patch) | |
tree | f50422364a44974d265ccab9be092c0d40a79abc /Makefile |
added makefile to download and extract files
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f4cda88 --- /dev/null +++ b/Makefile @@ -0,0 +1,29 @@ +DOWNLOAD_BASEURL := "https://download.studio.link/releases" +VERSION := 20.03.6 + +all: studio-link-standalone studio-link.lv2 studio-link-onair.lv2 + +studio-link-standalone: v$(VERSION)/studio-link-standalone-v$(VERSION).tar.gz + @echo "extracting files... from $<" + @tar -xzf $< + @mv studio-link-standalone-v$(VERSION) $@ + +studio-link.lv2: v$(VERSION)/studio-link-plugin.zip + @echo "extracting files... from $<" + @unzip -u $< + +studio-link-onair.lv2: v$(VERSION)/studio-link-plugin-onair.zip + @echo "extracting files... from $<" + @unzip -u $< + +v$(VERSION)/%: + @echo "fetching file: $(DOWNLOAD_BASEURL)/v$(VERSION)-stable/linux/$(notdir $@)" + @curl -L -f -s -S "$(DOWNLOAD_BASEURL)/v$(VERSION)-stable/linux/$(notdir $@)" > "$@" + @cd v$(VERSION) && sha256sum -c --ignore-missing sha256.sum + +clean: + rm -f "v$(VERSION)/*.tar.gz" + rm -f "v$(VERSION)/*.zip" + rm -f studio-link-standalone + rm -rf studio-link.lv2 + rm -rf studio-link-onair.lv2 |