diff options
author | Mark Brand <mabrand@mabrand.nl> | 2010-11-07 10:49:22 (GMT) |
---|---|---|
committer | Mark Brand <mabrand@mabrand.nl> | 2010-11-07 10:49:22 (GMT) |
commit | 6d9c4d5ac4588d16f65b0464113c546e2f8873f8 (patch) | |
tree | 9ce24f46d1cc5f7a7b01d30701a6b3ffe8ad9076 /src/postgresql.mk | |
parent | 0152dfdd6f7be75d485cdd7567000b779bb24837 (diff) | |
download | mxe-6d9c4d5ac4588d16f65b0464113c546e2f8873f8.zip mxe-6d9c4d5ac4588d16f65b0464113c546e2f8873f8.tar.gz mxe-6d9c4d5ac4588d16f65b0464113c546e2f8873f8.tar.bz2 |
upgrade package postgresql and fix UPDATE macro
Diffstat (limited to 'src/postgresql.mk')
-rw-r--r-- | src/postgresql.mk | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/postgresql.mk b/src/postgresql.mk index fbe702a..05c9c33 100644 --- a/src/postgresql.mk +++ b/src/postgresql.mk @@ -4,8 +4,8 @@ # PostgreSQL PKG := postgresql $(PKG)_IGNORE := -$(PKG)_VERSION := 9.0.0 -$(PKG)_CHECKSUM := ed2f83cd1a83c40dcbe0ba19ee3ba2a7faa0de3d +$(PKG)_VERSION := 9.0.1 +$(PKG)_CHECKSUM := 7adeb3c4b661115ec6eb4e5896edfee71f87245e $(PKG)_SUBDIR := postgresql-$($(PKG)_VERSION) $(PKG)_FILE := postgresql-$($(PKG)_VERSION).tar.bz2 $(PKG)_WEBSITE := http://www.postgresql.org/ @@ -14,9 +14,9 @@ $(PKG)_URL_2 := http://ftp10.us.postgresql.org/postgresql/source/v$($(PKG)_VE $(PKG)_DEPS := gcc zlib openssl define $(PKG)_UPDATE - wget -q -O- 'http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/' | \ - grep '<option>REL' | \ - $(SED) -n 's,.*REL\([0-9][0-9_]*\)<.*,\1,p' | \ + wget -q -O- 'http://git.postgresql.org/gitweb?p=postgresql.git;a=tags' | \ + grep 'refs/tags/REL[0-9_]*"' | \ + $(SED) 's,.*refs/tags/REL\(.*\)".*,\1,g;' | \ $(SED) 's,_,.,g' | \ head -1 endef |