class Pgrouting < Formula desc "Provides geospatial routing for PostGIS/PostgreSQL database" homepage "https://pgrouting.org/" url "https://github.com/pgRouting/pgrouting/archive/v2.6.2.tar.gz" sha256 "328fb46fbb865aecad9771b2892b06602fa796949a985b8973ce8bb09b469295" revision 1 head "https://github.com/pgRouting/pgrouting.git" bottle do cellar :any sha256 "01eca19346f1d5865981d324b2d5e260c8f77fd2bc724564999a1ac4fda17407" => :mojave sha256 "a1b40e5c9c5add2e84da119a7cdd71f25f303a02ce3e6d5e8885fcb18508eddf" => :high_sierra sha256 "0d6fe870febd2c59117bbb8bf3e3da8625e6476c34368890de8de7f639061ff3" => :sierra end depends_on "cmake" => :build depends_on "boost" depends_on "cgal" depends_on "gmp" depends_on "postgis" depends_on "postgresql" def install mkdir "stage" mkdir "build" do system "cmake", "-DWITH_DD=ON", "..", *std_cmake_args system "make" system "make", "install", "DESTDIR=#{buildpath}/stage" end lib.install Dir["stage/**/lib/*"] (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 { exec "#{pg_bin}/postgres", "-D", testpath/"test", "-p", pg_port } begin sleep 2 system "#{pg_bin}/createdb", "-p", pg_port system "#{pg_bin}/psql", "-p", pg_port, "--command", "CREATE DATABASE test;" system "#{pg_bin}/psql", "-p", pg_port, "-d", "test", "--command", "CREATE EXTENSION postgis;" system "#{pg_bin}/psql", "-p", pg_port, "-d", "test", "--command", "CREATE EXTENSION pgrouting;" ensure Process.kill 9, pid Process.wait pid end end end