diff options
author | Adis Nezirovic <adis_at_linux.org.ba> | 2016-10-13 21:11:08 +0700 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-10-14 22:19:55 +0700 |
commit | 5889a05587732f787714880b75612d0d059713cb (patch) | |
tree | c54f3b0dd940e7d6e8c75c53d2bb1666d84f2af2 /system/postgresql/postgresql.SlackBuild | |
parent | 9514306f3d8dd25b6f0a41428c0652d06bf80477 (diff) |
system/postgresql: Updated for version 9.6.0.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'system/postgresql/postgresql.SlackBuild')
-rw-r--r-- | system/postgresql/postgresql.SlackBuild | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/system/postgresql/postgresql.SlackBuild b/system/postgresql/postgresql.SlackBuild index 40357dffb168..208169282b52 100644 --- a/system/postgresql/postgresql.SlackBuild +++ b/system/postgresql/postgresql.SlackBuild @@ -28,11 +28,11 @@ # Modified by the SlackBuilds.org Project PRGNAM=postgresql -VERSION=${VERSION:-9.5.3} +VERSION=${VERSION:-9.6.0} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} -PG_VERSION=${PG_VERSION:-9.5} +PG_VERSION=${PG_VERSION:-9.6} PG_PORT=${PG_PORT:-5432} PG_UID=${PG_UID:-209} PG_GID=${PG_GID:-209} @@ -135,7 +135,7 @@ make install-docs DESTDIR=$PKG ) # Some interesting additional modules: -# http://www.postgresql.org/docs/9.5/static/contrib.html +# http://www.postgresql.org/docs/9.6/static/contrib.html # # adminpack - helper extension for pgAdmin # pgcrypto - extension for some business applications @@ -143,7 +143,7 @@ make install-docs DESTDIR=$PKG # postgres_fdw - foreign-data wrapper for access to external PostgreSQL servers # file_fdw - foreign-data wrapper for access to data files on filesystem -PG_EXTENSIONS=${PG_EXTENSIONS:-"adminpack pgcrypto ltree xml2 postgres_fdw file_fdw"} +PG_EXTENSIONS=${PG_EXTENSIONS:-"adminpack pgcrypto ltree xml2 postgres_fdw file_fdw hstore citext"} if [ "x$PG_EXTENSIONS" = "xALL" ];then cd $TMP/$PRGNAM-$VERSION/contrib |