7b805f9430
* postgres-xc: delete * httest: delete
111 lines
3.6 KiB
Ruby
111 lines
3.6 KiB
Ruby
class Postgresql < Formula
|
|
desc "Object-relational database system"
|
|
homepage "https://www.postgresql.org/"
|
|
url "https://ftp.postgresql.org/pub/source/v11.5/postgresql-11.5.tar.bz2"
|
|
sha256 "7fdf23060bfc715144cbf2696cf05b0fa284ad3eb21f0c378591c6bca99ad180"
|
|
revision 1
|
|
head "https://github.com/postgres/postgres.git"
|
|
|
|
bottle do
|
|
sha256 "463c6a192a0b6a5d1359b68db24003b2dac6895cdb86c827c41bf03fffd856d6" => :mojave
|
|
sha256 "eacea455385cab25b9692b5b2aed804f34fa409838ee90702fe01c793117d33c" => :high_sierra
|
|
sha256 "ae676cf5e076fd8f0b7395835e25f35e8d82f2660534749a3f45c1677cb8f7ba" => :sierra
|
|
end
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "icu4c"
|
|
depends_on "openssl@1.1"
|
|
depends_on "readline"
|
|
|
|
def install
|
|
# avoid adding the SDK library directory to the linker search path
|
|
ENV["XML2_CONFIG"] = "xml2-config --exec-prefix=/usr"
|
|
|
|
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}"
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--prefix=#{prefix}
|
|
--datadir=#{HOMEBREW_PREFIX}/share/postgresql
|
|
--libdir=#{HOMEBREW_PREFIX}/lib
|
|
--sysconfdir=#{etc}
|
|
--docdir=#{doc}
|
|
--enable-thread-safety
|
|
--with-bonjour
|
|
--with-gssapi
|
|
--with-icu
|
|
--with-ldap
|
|
--with-libxml
|
|
--with-libxslt
|
|
--with-openssl
|
|
--with-pam
|
|
--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"
|
|
system "make", "install-world", "datadir=#{pkgshare}",
|
|
"libdir=#{lib}",
|
|
"pkglibdir=#{lib}/postgresql"
|
|
end
|
|
|
|
def post_install
|
|
(var/"log").mkpath
|
|
(var/"postgres").mkpath
|
|
unless File.exist? "#{var}/postgres/PG_VERSION"
|
|
system "#{bin}/initdb", "--locale=C", "-E", "UTF-8", "#{var}/postgres"
|
|
end
|
|
end
|
|
|
|
def caveats; <<~EOS
|
|
To migrate existing data from a previous major version of PostgreSQL run:
|
|
brew postgresql-upgrade-database
|
|
EOS
|
|
end
|
|
|
|
plist_options :manual => "pg_ctl -D #{HOMEBREW_PREFIX}/var/postgres 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}/postgres</string>
|
|
</array>
|
|
<key>RunAtLoad</key>
|
|
<true/>
|
|
<key>WorkingDirectory</key>
|
|
<string>#{HOMEBREW_PREFIX}</string>
|
|
<key>StandardOutPath</key>
|
|
<string>#{var}/log/postgres.log</string>
|
|
<key>StandardErrorPath</key>
|
|
<string>#{var}/log/postgres.log</string>
|
|
</dict>
|
|
</plist>
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/initdb", testpath/"test"
|
|
assert_equal "#{HOMEBREW_PREFIX}/share/postgresql", shell_output("#{bin}/pg_config --sharedir").chomp
|
|
assert_equal "#{HOMEBREW_PREFIX}/lib", shell_output("#{bin}/pg_config --libdir").chomp
|
|
assert_equal "#{HOMEBREW_PREFIX}/lib/postgresql", shell_output("#{bin}/pg_config --pkglibdir").chomp
|
|
end
|
|
end
|