class Citus < Formula desc "PostgreSQL-based distributed RDBMS" homepage "https://www.citusdata.com" url "https://github.com/citusdata/citus/archive/v5.0.1.tar.gz" sha256 "dd81a2f2a0fb5bb6e4a990b96f04857d7e6d8fcd607d7aabf70087506f7a2fc9" head "https://github.com/citusdata/citus.git" bottle do sha256 "4d86305eb8e92e92d215710e6370fd54271d57f51caa7fbdcd5ae8f8473ab555" => :el_capitan sha256 "783da32bb249e4eea84a10d95c60fd1536801cd40c3b278f1da8ad3387902f33" => :yosemite sha256 "de90aab4bf007570bfc4bc63f700e167670a99a8491333c2b98a724a6c34cfa4" => :mavericks end depends_on "postgresql" def install ENV["PG_CONFIG"] = Formula["postgresql"].opt_bin/"pg_config" system "./configure" # workaround for https://github.com/Homebrew/homebrew/issues/49948 system "make", "libpq=-L#{Formula["postgresql"].opt_lib} -lpq" # Use stage directory to prevent installing to pg_config-defined dirs, # which would not be within this package's Cellar. mkdir "stage" system "make", "install", "DESTDIR=#{buildpath}/stage" bin.install Dir["stage/**/bin/*"] lib.install Dir["stage/**/lib/*"] include.install Dir["stage/**/include/*"] (share/"postgresql/extension").install Dir["stage/**/share/postgresql/extension/*"] end test do pg_bin = Formula["postgresql"].opt_bin pg_port = "55561" system "#{pg_bin}/initdb", testpath/"test" pid = fork do exec("#{pg_bin}/postgres", "-D", testpath/"test", "-c", "shared_preload_libraries=citus", "-p", pg_port) end begin sleep 2 count_workers_query = "SELECT COUNT(*) FROM master_get_active_worker_nodes();" system "#{pg_bin}/createdb", "-p", pg_port, "test" system "#{pg_bin}/psql", "-p", pg_port, "-d", "test", "--command", "CREATE EXTENSION citus;" assert_equal "0", shell_output("#{pg_bin}/psql -p #{pg_port} -d test -Atc" \ "'#{count_workers_query}'").strip ensure Process.kill 9, pid Process.wait pid end end end