Last active
November 11, 2016 09:07
-
-
Save av-ast/6bc6879d4b4911a63a3be8c708793c58 to your computer and use it in GitHub Desktop.
Homebrew formula for postgresql-9.6.0
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class Postgresql96 < Formula | |
desc "Relational database management system" | |
homepage "https://www.postgresql.org/" | |
version = "9.6.0" | |
url "https://ftp.postgresql.org/pub/source/v#{version}/postgresql-#{version}.tar.bz2" | |
sha256 "3b5fe9634b80a4511aac1832a087586a7caa8c3413619562bdda009a015863ce" | |
head do | |
url "https://git.postgresql.org/git/postgresql.git", :branch => "REL9_6_STABLE" | |
depends_on "open-sp" => :build | |
depends_on "petere/sgml/docbook-dsssl" => :build | |
depends_on "petere/sgml/docbook-sgml" => :build | |
depends_on "petere/sgml/openjade" => :build | |
end | |
keg_only "The different provided versions of PostgreSQL conflict with each other." | |
deprecated_option "enable-cassert" => "with-cassert" | |
option "with-cassert", "Enable assertion checks (for debugging)" | |
depends_on "e2fsprogs" | |
depends_on "gettext" | |
depends_on "homebrew/dupes/openldap" | |
depends_on "openssl" | |
depends_on "readline" | |
depends_on "homebrew/dupes/tcl-tk" | |
def install | |
args = %W[ | |
--prefix=#{prefix} | |
--enable-dtrace | |
--enable-nls | |
--with-bonjour | |
--with-gssapi | |
--with-ldap | |
--with-libxml | |
--with-libxslt | |
--with-openssl | |
--with-uuid=e2fs | |
--with-pam | |
--with-perl | |
--with-python | |
--with-tcl | |
] | |
# Add include and library directories of dependencies, so that | |
# they can be used for compiling extensions. Superenv does this | |
# when compiling this package, but won't record it for pg_config. | |
deps = %w[gettext openldap openssl readline tcl-tk] | |
with_includes = deps.map { |f| Formula[f].opt_include }.join(":") | |
with_libraries = deps.map { |f| Formula[f].opt_lib }.join(":") | |
args << "--with-includes=#{with_includes}" | |
args << "--with-libraries=#{with_libraries}" | |
args << "--enable-cassert" if build.include? "enable-cassert" | |
args << "--with-extra-version=+git" if build.head? | |
system "./configure", *args | |
system "make", "install-world" | |
end | |
def caveats; <<-EOS.undent | |
To use this PostgreSQL installation, do one or more of the following: | |
- Call all programs explicitly with #{opt_prefix}/bin/... | |
- Add #{opt_bin} to your PATH | |
- brew link -f #{name} | |
- Install the postgresql-common package | |
To access the man pages, do one or more of the following: | |
- Refer to them by their full path, like `man #{opt_share}/man/man1/psql.1` | |
- Add #{opt_share}/man to your MANPATH | |
- brew link -f #{name} | |
EOS | |
end | |
test do | |
system "#{bin}/initdb", "pgdata" | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment