114 lines
3.6 KiB
Ruby
114 lines
3.6 KiB
Ruby
class PostgresqlAT94 < Formula
|
|
desc "Object-relational database system"
|
|
homepage "https://www.postgresql.org/"
|
|
url "https://ftp.postgresql.org/pub/source/v9.4.24/postgresql-9.4.24.tar.bz2"
|
|
sha256 "52253d67dd46a7463a9d7c5e82bf959931fa4c11ec56293150210fa82a0f9429"
|
|
revision 1
|
|
|
|
bottle do
|
|
sha256 "0c6e2c5f243ba38e908a2276e17db10b88b8b609d5d40659a4cb91977fce4a95" => :catalina
|
|
sha256 "a79336772356f70f9dcc0cc6ac89cf4d8f68cf8b18f61da2686d720249e7c705" => :mojave
|
|
sha256 "e627e9679ed5b2fd35d9f31571e9c86ea7e0b8e098bf8ae32e05027204c14c6c" => :high_sierra
|
|
sha256 "37cb6a1cbd1da98b31d69b2be227c9bcb6fa46f6972c631d1b25fb98b0f0f515" => :sierra
|
|
end
|
|
|
|
keg_only :versioned_formula
|
|
|
|
depends_on "openssl@1.1"
|
|
depends_on "readline"
|
|
|
|
def install
|
|
# Fix "configure: error: readline library not found"
|
|
if MacOS.version == :sierra || MacOS.version == :el_capitan
|
|
ENV["SDKROOT"] = MacOS.sdk_path
|
|
end
|
|
|
|
ENV.prepend "LDFLAGS", "-L#{Formula["openssl@1.1"].opt_lib} -L#{Formula["readline"].opt_lib}"
|
|
ENV.prepend "CPPFLAGS", "-I#{Formula["openssl@1.1"].opt_include} -I#{Formula["readline"].opt_include}"
|
|
ENV.prepend "PG_SYSROOT", MacOS.sdk_path
|
|
ENV.append_to_cflags "-D_XOPEN_SOURCE"
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--prefix=#{prefix}
|
|
--datadir=#{pkgshare}
|
|
--docdir=#{doc}
|
|
--enable-thread-safety
|
|
--with-bonjour
|
|
--with-gssapi
|
|
--with-ldap
|
|
--with-openssl
|
|
--with-pam
|
|
--with-libxml
|
|
--with-libxslt
|
|
--with-perl
|
|
--with-uuid=e2fs
|
|
]
|
|
|
|
# The CLT is required to build tcl support on 10.7 and 10.8 because tclConfig.sh is not part of the SDK
|
|
args << "--with-tcl"
|
|
if File.exist?("#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework/tclConfig.sh")
|
|
args << "--with-tclconfig=#{MacOS.sdk_path}/System/Library/Frameworks/Tcl.framework"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install-world"
|
|
end
|
|
|
|
def post_install
|
|
(var/"log").mkpath
|
|
(var/name).mkpath
|
|
unless File.exist? "#{var}/#{name}/PG_VERSION"
|
|
system "#{bin}/initdb", "#{var}/#{name}"
|
|
end
|
|
end
|
|
|
|
def caveats
|
|
<<~EOS
|
|
If builds of PostgreSQL 9 are failing and you have version 8.x installed,
|
|
you may need to remove the previous version first. See:
|
|
https://github.com/Homebrew/legacy-homebrew/issues/2510
|
|
|
|
To migrate existing data from a previous major version (pre-9.3) of PostgreSQL, see:
|
|
https://www.postgresql.org/docs/9.3/static/upgrading.html
|
|
|
|
When installing the postgres gem, including ARCHFLAGS is recommended:
|
|
ARCHFLAGS="-arch x86_64" gem install pg
|
|
|
|
To install gems without sudo, see the Homebrew documentation:
|
|
https://docs.brew.sh/Gems,-Eggs-and-Perl-Modules
|
|
EOS
|
|
end
|
|
|
|
plist_options :manual => "pg_ctl -D #{HOMEBREW_PREFIX}/var/postgresql@9.4 start"
|
|
|
|
def plist; <<~EOS
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
|
|
<plist version="1.0">
|
|
<dict>
|
|
<key>KeepAlive</key>
|
|
<true/>
|
|
<key>Label</key>
|
|
<string>#{plist_name}</string>
|
|
<key>ProgramArguments</key>
|
|
<array>
|
|
<string>#{opt_bin}/postgres</string>
|
|
<string>-D</string>
|
|
<string>#{var}/#{name}</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/#{name}.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/initdb", testpath/"test"
|
|
end
|
|
end
|