homebrew-core/Formula/pgpool-ii.rb

34 lines
725 B
Ruby

require 'formula'
class PostgresqlInstalled < Requirement
def message; <<-EOS.undent
PostgreSQL is required to install.
You can install this with:
brew install postgresql
Or you can use an official installer from:
http://www.postgresql.org/
EOS
end
def satisfied?
which 'pg_config'
end
def fatal?
true
end
end
class PgpoolIi < Formula
homepage 'http://www.pgpool.net/mediawiki/index.php/Main_Page'
url 'http://www.pgpool.net/download.php?f=pgpool-II-3.1.5.tar.gz'
sha1 '43b84f9adbae0b4bca3284bd8ce95da441c71018'
depends_on PostgresqlInstalled.new
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end