homebrew-core/Formula/postgresql@11.rb

141 lines
4.3 KiB
Ruby

class PostgresqlAT11 < Formula
desc "Object-relational database system"
homepage "https://www.postgresql.org/"
url "https://ftp.postgresql.org/pub/source/v11.17/postgresql-11.17.tar.bz2"
sha256 "6e984963ae0765e61577995103a7e6594db0f0bd01528ac123e0de4a6a4cb4c4"
license "PostgreSQL"
revision 2
livecheck do
url "https://ftp.postgresql.org/pub/source/"
regex(%r{href=["']?v?(11(?:\.\d+)+)/?["' >]}i)
end
bottle do
sha256 arm64_monterey: "728229f3fe01151906bb2dd4932b1b0f5d2cef9989a270404375f8b3a82f2986"
sha256 arm64_big_sur: "1f1170163c626bfd24d3f2a91e8cfdc8db913258f1bcbc241eb56083f05562be"
sha256 monterey: "342c1658c9045b6a0d7b52d367826378022bcb9320462b829881641f87809232"
sha256 big_sur: "e983850bf954fd280dede1bb10752ba83d5613431a305bf77402252551e5553a"
sha256 catalina: "7f881069db9e1212d40a5a93eac6efb0b113991c9c0c8a42ca01e612ba2166ac"
sha256 x86_64_linux: "e7da07664164fd0a297b3087c4df7fd17bb80393df944a7de3db29379946008b"
end
keg_only :versioned_formula
# https://www.postgresql.org/support/versioning/
deprecate! date: "2023-11-09", because: :unsupported
depends_on "pkg-config" => :build
depends_on "icu4c"
depends_on "openssl@1.1"
depends_on "readline"
uses_from_macos "krb5"
uses_from_macos "libxml2"
uses_from_macos "libxslt"
uses_from_macos "openldap"
uses_from_macos "perl"
on_linux do
depends_on "linux-pam"
depends_on "util-linux"
end
def install
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=#{opt_pkgshare}
--libdir=#{opt_lib}
--includedir=#{opt_include}
--sysconfdir=#{etc}
--docdir=#{doc}
--enable-thread-safety
--with-gssapi
--with-icu
--with-ldap
--with-libxml
--with-libxslt
--with-openssl
--with-pam
--with-perl
--with-uuid=e2fs
]
if OS.mac?
args += %w[
--with-bonjour
--with-tcl
]
end
# PostgreSQL by default uses xcodebuild internally to determine this,
# which does not work on CLT-only installs.
args << "PG_SYSROOT=#{MacOS.sdk_path}" if MacOS.sdk_root_needed?
system "./configure", *args
system "make"
system "make", "install-world", "datadir=#{pkgshare}",
"libdir=#{lib}",
"pkglibdir=#{lib}",
"includedir=#{include}",
"pkgincludedir=#{include}",
"includedir_server=#{include}/server",
"includedir_internal=#{include}/internal"
if OS.linux?
inreplace lib/"pgxs/src/Makefile.global",
"LD = #{HOMEBREW_PREFIX}/Homebrew/Library/Homebrew/shims/linux/super/ld",
"LD = #{HOMEBREW_PREFIX}/bin/ld"
end
end
def post_install
(var/"log").mkpath
postgresql_datadir.mkpath
# Don't initialize database, it clashes when testing other PostgreSQL versions.
return if ENV["HOMEBREW_GITHUB_ACTIONS"]
system "#{bin}/initdb", "--locale=C", "-E", "UTF-8", postgresql_datadir unless pg_version_exists?
end
def postgresql_datadir
var/name
end
def postgresql_log_path
var/"log/#{name}.log"
end
def pg_version_exists?
(postgresql_datadir/"PG_VERSION").exist?
end
def caveats
<<~EOS
This formula has created a default database cluster with:
initdb --locale=C -E UTF-8 #{postgresql_datadir}
For more details, read:
https://www.postgresql.org/docs/#{version.major}/app-initdb.html
EOS
end
service do
run [opt_bin/"postgres", "-D", f.postgresql_datadir]
keep_alive true
log_path f.postgresql_log_path
error_log_path f.postgresql_log_path
working_dir HOMEBREW_PREFIX
end
test do
system "#{bin}/initdb", testpath/"test" unless ENV["HOMEBREW_GITHUB_ACTIONS"]
assert_equal opt_pkgshare.to_s, shell_output("#{bin}/pg_config --sharedir").chomp
assert_equal opt_lib.to_s, shell_output("#{bin}/pg_config --libdir").chomp
assert_equal opt_lib.to_s, shell_output("#{bin}/pg_config --pkglibdir").chomp
end
end