diff options
Diffstat (limited to 'src/primesieve.mk')
-rw-r--r-- | src/primesieve.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/primesieve.mk b/src/primesieve.mk index 29303fc..92042c8 100644 --- a/src/primesieve.mk +++ b/src/primesieve.mk @@ -1,7 +1,7 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := primesieve -$(PKG)_WEBSITE := http://primesieve.org/ +$(PKG)_WEBSITE := https://primesieve.org/ $(PKG)_DESCR := Primesieve $(PKG)_IGNORE := $(PKG)_VERSION := 5.5.0 @@ -12,7 +12,7 @@ $(PKG)_URL := https://dl.bintray.com/kimwalisch/$(PKG)/$($(PKG)_FILE) $(PKG)_DEPS := cc define $(PKG)_UPDATE - $(WGET) -q -O- 'http://primesieve.org/downloads/' | \ + $(WGET) -q -O- 'https://primesieve.org/downloads/' | \ $(SED) -n 's,.*primesieve-\([0-9][^>]*\)\.tar.*,\1,p' | \ grep -v '\(linux\|mac\|win\)' | \ $(SORT) -Vr | \ |