diff options
author | Christian Pointner <equinox@helsinki.at> | 2020-03-25 14:16:21 (GMT) |
---|---|---|
committer | Christian Pointner <equinox@helsinki.at> | 2020-03-25 14:16:21 (GMT) |
commit | c3435cf8ed71f348b1d458cecdbe2ce68510bf77 (patch) | |
tree | 2a4b7402b8a4601bf495d104f6a08e0e0c475299 /Makefile | |
parent | 743554dbe6e32e6cba48266860744871f604d548 (diff) |
add special package for debian jessie
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 8 insertions, 8 deletions
@@ -1,24 +1,24 @@ -DOWNLOAD_BASEURL := "https://download.studio.link/releases" -VERSION := 20.03.7 +DOWNLOAD_BASEURL := "http://build.helsinki.at/studio-link/jessie" +VERSION := 20.03.8 -all: studio-link-standalone studio-link.lv2 #studio-link-onair.lv2 +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.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 $@)" > "$@" + @echo "fetching file: $(DOWNLOAD_BASEURL)/$(notdir $@)" + @curl -L -f -s -S "$(DOWNLOAD_BASEURL)/$(notdir $@)" > "$@" @cd v$(VERSION) && sha256sum -c "$(notdir $@).sha256" clean: |