diff options
author | Viktor Szakats <commit@vszakats.net> | 2018-08-13 16:38:36 (GMT) |
---|---|---|
committer | Tony Theodore <tonyt@logyst.com> | 2018-08-14 09:09:36 (GMT) |
commit | 7350b9825613312e01039952ccadcf04f7efe014 (patch) | |
tree | 2b6e0cb875e5fecb5b7c895252c718e11cb31759 /src/bzip2.mk | |
parent | 19c91e6e2a00e802ffb27779daeacaaf58467e98 (diff) | |
download | mxe-7350b9825613312e01039952ccadcf04f7efe014.zip mxe-7350b9825613312e01039952ccadcf04f7efe014.tar.gz mxe-7350b9825613312e01039952ccadcf04f7efe014.tar.bz2 |
secure/fix URLs
Diffstat (limited to 'src/bzip2.mk')
-rw-r--r-- | src/bzip2.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/bzip2.mk b/src/bzip2.mk index 2ba726a..4bb38e8 100644 --- a/src/bzip2.mk +++ b/src/bzip2.mk @@ -1,17 +1,17 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := bzip2 -$(PKG)_WEBSITE := http://www.bzip.org/ +$(PKG)_WEBSITE := https://en.wikipedia.org/wiki/Bzip2 $(PKG)_IGNORE := $(PKG)_VERSION := 1.0.6 $(PKG)_CHECKSUM := a2848f34fcd5d6cf47def00461fcb528a0484d8edef8208d6d2e2909dc61d9cd $(PKG)_SUBDIR := bzip2-$($(PKG)_VERSION) $(PKG)_FILE := bzip2-$($(PKG)_VERSION).tar.gz -$(PKG)_URL := http://www.bzip.org/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_URL := https://ftp.osuosl.org/pub/clfs/conglomeration/bzip2/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := cc define $(PKG)_UPDATE - $(WGET) -q -O- 'http://www.bzip.org/downloads.html' | \ + $(WGET) -q -O- 'https://ftp.osuosl.org/pub/clfs/conglomeration/bzip2/' | \ grep 'bzip2-' | \ $(SED) -n 's,.*bzip2-\([0-9][^>]*\)\.tar.*,\1,p' | \ head -1 |