diff options
author | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-03-05 03:41:39 (GMT) |
---|---|---|
committer | Viktor Szakats <vszakats@users.noreply.github.com> | 2017-03-10 13:59:00 (GMT) |
commit | 45d34aaac7be400a5befb5a7a67d3b7b0072bc92 (patch) | |
tree | 7e0c7bf6f06d4cf82695aa4add7c6beff849216f /src/boost.mk | |
parent | 700f5c841fc1aa2b7bc15c317fd8f13c7e491e74 (diff) | |
download | mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.zip mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.gz mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.bz2 |
more URL updates
Diffstat (limited to 'src/boost.mk')
-rw-r--r-- | src/boost.mk | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/boost.mk b/src/boost.mk index cc9fdbc..1108b08 100644 --- a/src/boost.mk +++ b/src/boost.mk @@ -1,18 +1,18 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := boost -$(PKG)_WEBSITE := http://www.boost.org/ +$(PKG)_WEBSITE := https://www.boost.org/ $(PKG)_DESCR := Boost C++ Library $(PKG)_IGNORE := $(PKG)_VERSION := 1.60.0 $(PKG)_CHECKSUM := 686affff989ac2488f79a97b9479efb9f2abae035b5ed4d8226de6857933fd3b $(PKG)_SUBDIR := boost_$(subst .,_,$($(PKG)_VERSION)) $(PKG)_FILE := boost_$(subst .,_,$($(PKG)_VERSION)).tar.bz2 -$(PKG)_URL := http://$(SOURCEFORGE_MIRROR)/project/boost/boost/$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_URL := https://$(SOURCEFORGE_MIRROR)/project/boost/boost/$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc bzip2 expat zlib define $(PKG)_UPDATE - $(WGET) -q -O- 'http://www.boost.org/users/download/' | \ + $(WGET) -q -O- 'https://www.boost.org/users/download/' | \ $(SED) -n 's,.*/boost/\([0-9][^"/]*\)/".*,\1,p' | \ grep -v beta | \ head -1 @@ -30,7 +30,7 @@ define $(PKG)_BUILD cd '$(1)/tools/build/' && ./bootstrap.sh # cross-build, see b2 options at: - # http://www.boost.org/build/doc/html/bbv2/overview/invocation.html + # https://www.boost.org/build/doc/html/bbv2/overview/invocation.html cd '$(1)' && ./tools/build/b2 \ -a \ -q \ |