41 lines
1 KiB
Ruby
41 lines
1 KiB
Ruby
require "formula"
|
|
|
|
class PostgresqlInstalled < Requirement
|
|
fatal true
|
|
default_formula "postgresql"
|
|
|
|
satisfy { which "pg_config" }
|
|
end
|
|
|
|
class Psqlodbc < Formula
|
|
homepage "http://www.postgresql.org/"
|
|
url "http://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-09.03.0210.tar.gz"
|
|
sha1 "e1eb147ef0452e1f7b0f9e102dacb5654a580dba"
|
|
bottle do
|
|
cellar :any
|
|
sha1 "f68ecb031a5b61df90609327414140eb4b538168" => :mavericks
|
|
sha1 "d1e1b11b6fa1fa759e596946e581fed6a28d9990" => :mountain_lion
|
|
sha1 "3adb10edd78ebd52a4786e82e4d19f1045c37834" => :lion
|
|
end
|
|
|
|
revision 1
|
|
|
|
depends_on "openssl"
|
|
depends_on "unixodbc"
|
|
depends_on PostgresqlInstalled
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--with-unixodbc=#{Formula['unixodbc'].prefix}"]
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
output = `#{Formula['unixodbc'].bin}/dltest #{lib}/psqlodbcw.so`
|
|
assert_equal "SUCCESS: Loaded #{lib}/psqlodbcw.so\n", output
|
|
assert_equal 0, $?.exitstatus
|
|
end
|
|
end
|