homebrew-core/Formula/libpqxx.rb

87 lines
2.4 KiB
Ruby

class Libpqxx < Formula
desc "C++ connector for PostgreSQL"
homepage "http://pqxx.org/development/libpqxx/"
url "http://pqxx.org/download/software/libpqxx/libpqxx-4.0.1.tar.gz"
sha256 "097ceda2797761ce517faa5bee186c883df1c407cb2aada613a16773afeedc38"
revision 2
bottle do
cellar :any
sha256 "81096e1c784882ea5f0c2db7252d333fb43f987f7f010616cb5a30fdaed5ef1f" => :high_sierra
sha256 "660779449eac96fdab22b28e28a8d8672de8baffb3b5cc35415fcc5b6fda1ab7" => :sierra
sha256 "ef820631f156b0912ab484c74f97e658b81c5dc2daa30d0eac74e8ff70a4174f" => :el_capitan
sha256 "096d1506a94e0aff6bcb09e6f7b952d35b701ef053a5e113410989e80ff6508e" => :yosemite
end
depends_on "pkg-config" => :build
depends_on :postgresql
# Patches borrowed from MacPorts. See:
# https://trac.macports.org/ticket/33671
#
# (1) Patched maketemporary to avoid an error message about improper use
# of the mktemp command; apparently maketemporary is designed to call
# mktemp in various ways, some of which may be improper, as it attempts
# to determine how to use it properly; we don't want to see those errors
# in the configure phase output.
# (2) Patched configure on darwin to fix incorrect assumption
# that true and false always live in /bin; on macOS they live in /usr/bin.
patch :DATA
def install
system "./configure", "--prefix=#{prefix}", "--enable-shared"
system "make", "install"
end
end
__END__
--- a/tools/maketemporary.orig 2009-07-04 00:38:30.000000000 -0500
+++ b/tools/maketemporary 2012-03-18 01:13:26.000000000 -0500
@@ -5,7 +5,7 @@
TMPDIR="${TMPDIR:-/tmp}"
export TMPDIR
-T="`mktemp`"
+T="`mktemp 2>/dev/null`"
if test -z "$T" ; then
T="`mktemp -t pqxx.XXXXXX`"
fi
--- a/configure.orig 2011-11-27 05:12:25.000000000 -0600
+++ b/configure 2012-03-18 01:09:08.000000000 -0500
@@ -15204,7 +15204,7 @@
fi
- if /bin/true; then
+ if /usr/bin/true; then
BUILD_REFERENCE_TRUE=
BUILD_REFERENCE_FALSE='#'
else
@@ -15290,7 +15290,7 @@
fi
- if /bin/true; then
+ if /usr/bin/true; then
BUILD_TUTORIAL_TRUE=
BUILD_TUTORIAL_FALSE='#'
else
@@ -15299,7 +15299,7 @@
fi
else
- if /bin/false; then
+ if /usr/bin/false; then
BUILD_REFERENCE_TRUE=
BUILD_REFERENCE_FALSE='#'
else
@@ -15307,7 +15307,7 @@
BUILD_REFERENCE_FALSE=
fi
- if /bin/false; then
+ if /usr/bin/false; then
BUILD_TUTORIAL_TRUE=
BUILD_TUTORIAL_FALSE='#'
else