homebrew-core/Formula/libpqxx.rb
2019-01-13 12:22:56 +01:00

42 lines
1.4 KiB
Ruby

class Libpqxx < Formula
desc "C++ connector for PostgreSQL"
homepage "http://pqxx.org/development/libpqxx/"
url "https://github.com/jtv/libpqxx/archive/6.2.5.tar.gz"
sha256 "36fcf8439ac7f7cc68b21e95b20e921ece4487cda1cc1d09b798a84e7cb3a4b7"
revision 4
bottle do
cellar :any
sha256 "c16de7b2cd26aa58484110470b784c960df9d5e73fdc81a5834bc9d4aaeba692" => :mojave
sha256 "3951ae5e365f98b87660218adc49aca7bb9cbdb37a2af470f6a796a49e2aa2f1" => :high_sierra
sha256 "5f6295ee505895fd0f2cf6332a2f1b1d1f1611a723ac2b97361a841b02cf9ff7" => :sierra
end
depends_on "pkg-config" => :build
depends_on "xmlto" => :build
depends_on "postgresql"
def install
system "./configure", "--prefix=#{prefix}", "--enable-shared"
system "make", "install"
end
test do
(testpath/"test.cpp").write <<~EOS
#include <pqxx/pqxx>
int main(int argc, char** argv) {
pqxx::connection con;
return 0;
}
EOS
system ENV.cxx, "-std=c++11", "test.cpp", "-L#{lib}", "-lpqxx",
"-I#{include}", "-o", "test"
# Running ./test will fail because there is no runnning postgresql server
# system "./test"
# `pg_config` uses Cellar paths not opt paths
postgresql_include = Formula["postgresql"].opt_include.realpath.to_s
assert_match postgresql_include, (lib/"pkgconfig/libpqxx.pc").read,
"Please revision bump libpqxx."
end
end