diff options
author | Viktor Szakats <commit@vszakats.net> | 2018-11-19 21:07:05 (GMT) |
---|---|---|
committer | mabrand <mabrand@mabrand.nl> | 2018-11-20 09:27:31 (GMT) |
commit | bdfb8c0159f6fe08208ec4ac8b297fcf4ae5dc27 (patch) | |
tree | 7d83ed022380056eb63804d5cd4a5fe3af8956aa /src/nlopt.mk | |
parent | 740321f6c5bbed2dc14d32a013c69157bee68340 (diff) | |
download | mxe-bdfb8c0159f6fe08208ec4ac8b297fcf4ae5dc27.zip mxe-bdfb8c0159f6fe08208ec4ac8b297fcf4ae5dc27.tar.gz mxe-bdfb8c0159f6fe08208ec4ac8b297fcf4ae5dc27.tar.bz2 |
use HTTPS in URLs
Diffstat (limited to 'src/nlopt.mk')
-rw-r--r-- | src/nlopt.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nlopt.mk b/src/nlopt.mk index 830df15..20ad31e 100644 --- a/src/nlopt.mk +++ b/src/nlopt.mk @@ -1,18 +1,18 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := nlopt -$(PKG)_WEBSITE := http://ab-initio.mit.edu/wiki/index.php/NLopt +$(PKG)_WEBSITE := https://ab-initio.mit.edu/wiki/index.php/NLopt $(PKG)_DESCR := NLopt $(PKG)_IGNORE := $(PKG)_VERSION := 2.4.2 $(PKG)_CHECKSUM := 8099633de9d71cbc06cd435da993eb424bbcdbded8f803cdaa9fb8c6e09c8e89 $(PKG)_SUBDIR := $(PKG)-$($(PKG)_VERSION) $(PKG)_FILE := $(PKG)-$($(PKG)_VERSION).tar.gz -$(PKG)_URL := http://ab-initio.mit.edu/$(PKG)/$($(PKG)_FILE) +$(PKG)_URL := https://ab-initio.mit.edu/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := cc define $(PKG)_UPDATE - $(WGET) -q -O- 'http://ab-initio.mit.edu/wiki/index.php/NLopt' | \ + $(WGET) -q -O- 'https://ab-initio.mit.edu/wiki/index.php/NLopt' | \ $(SED) -n 's,.*<a href=".*nlopt-\([0-9.]\+\).tar.gz".*,\1,p' | \ $(SORT) -V | \ tail -1 |