diff options
author | Viktor Szakats <commit@vszakats.net> | 2019-10-19 19:23:24 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2019-10-20 02:01:57 (GMT) |
commit | 9ea0397bfc51c8f1b36d391b5b1ec28afeb3be18 (patch) | |
tree | e1b0e40f035b25c4e4c426b5b8dcb9d86a13d1a9 /src/jack.mk | |
parent | 663a68f30be8ae6652567631ac8e605224ddf50c (diff) | |
download | mxe-9ea0397bfc51c8f1b36d391b5b1ec28afeb3be18.zip mxe-9ea0397bfc51c8f1b36d391b5b1ec28afeb3be18.tar.gz mxe-9ea0397bfc51c8f1b36d391b5b1ec28afeb3be18.tar.bz2 |
secure URLs
* also remove the last ftp:// URL, which was a mirror
Diffstat (limited to 'src/jack.mk')
-rw-r--r-- | src/jack.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jack.mk b/src/jack.mk index bb5d65b..b905b5a 100644 --- a/src/jack.mk +++ b/src/jack.mk @@ -1,7 +1,7 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := jack -$(PKG)_WEBSITE := http://jackaudio.org/ +$(PKG)_WEBSITE := https://jackaudio.org/ $(PKG)_DESCR := JACK Audio Connection Kit $(PKG)_IGNORE := $(PKG)_VERSION := 1.9.10 @@ -12,7 +12,7 @@ $(PKG)_URL := https://dl.dropboxusercontent.com/u/28869550/$($(PKG)_FILE) $(PKG)_DEPS := cc libgnurx libsamplerate libsndfile portaudio pthreads readline define $(PKG)_UPDATE - $(WGET) -q -O- 'http://jackaudio.org/downloads/' | \ + $(WGET) -q -O- 'https://jackaudio.org/downloads/' | \ $(SED) -n 's,.*jack-\([0-9][^"]*\)\.tar.*,\1,p' | \ head -1 endef |