Sha256: 9c7f00969c8ddbb1fac3159299aa156887154072f13d399ab97e56fb5daac782
Contents?: true
Size: 588 Bytes
Versions: 10
Compression:
Stored size: 588 Bytes
Contents
#!/bin/sh POSTGRESQL_VERSION=`pg_config --version | awk '{print $2}'` cd /tmp test -e /tmp/postgresql-$POSTGRESQL_VERSION.tar.bz2 || wget http://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v$POSTGRESQL_VERSION/postgresql-$POSTGRESQL_VERSION.tar.bz2 test -d /tmp/postgresql-$POSTGRESQL_VERSION || tar zxvf postgresql-$POSTGRESQL_VERSION.tar.bz2 cd postgresql-$POSTGRESQL_VERSION && eval ./configure `pg_config --configure` && make cd contrib/unaccent && make && make install cd .. cd contrib/pg_trgm && make && make install cd .. cd contrib/fuzzystrmatch && make && make install
Version data entries
10 entries across 10 versions & 1 rubygems