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/postgresql.mk | |
parent | 700f5c841fc1aa2b7bc15c317fd8f13c7e491e74 (diff) | |
download | mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.zip mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.gz mxe-45d34aaac7be400a5befb5a7a67d3b7b0072bc92.tar.bz2 |
more URL updates
Diffstat (limited to 'src/postgresql.mk')
-rw-r--r-- | src/postgresql.mk | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/postgresql.mk b/src/postgresql.mk index e0ad874..f4320a1 100644 --- a/src/postgresql.mk +++ b/src/postgresql.mk @@ -1,18 +1,18 @@ # This file is part of MXE. See LICENSE.md for licensing information. PKG := postgresql -$(PKG)_WEBSITE := http://www.postgresql.org/ +$(PKG)_WEBSITE := https://www.postgresql.org/ $(PKG)_DESCR := PostgreSQL $(PKG)_IGNORE := $(PKG)_VERSION := 9.2.4 $(PKG)_CHECKSUM := d97dd918a88a4449225998f46aafa85216a3f89163a3411830d6890507ffae93 $(PKG)_SUBDIR := postgresql-$($(PKG)_VERSION) $(PKG)_FILE := postgresql-$($(PKG)_VERSION).tar.bz2 -$(PKG)_URL := http://ftp.postgresql.org/pub/source/v$($(PKG)_VERSION)/$($(PKG)_FILE) +$(PKG)_URL := https://ftp.postgresql.org/pub/source/v$($(PKG)_VERSION)/$($(PKG)_FILE) $(PKG)_DEPS := gcc openssl pthreads zlib define $(PKG)_UPDATE - $(WGET) -q -O- 'http://git.postgresql.org/gitweb?p=postgresql.git;a=tags' | \ + $(WGET) -q -O- 'https://git.postgresql.org/gitweb?p=postgresql.git;a=tags' | \ grep 'refs/tags/REL9[0-9_]*"' | \ $(SED) 's,.*refs/tags/REL\(.*\)".*,\1,g;' | \ $(SED) 's,_,.,g' | \ |