aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Library/Formula/psqlodbc.rb15
1 files changed, 4 insertions, 11 deletions
diff --git a/Library/Formula/psqlodbc.rb b/Library/Formula/psqlodbc.rb
index d5df9acea..13723e332 100644
--- a/Library/Formula/psqlodbc.rb
+++ b/Library/Formula/psqlodbc.rb
@@ -2,15 +2,10 @@ require "formula"
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"
- revision 2
+ url "http://ftp.postgresql.org/pub/odbc/versions/src/psqlodbc-09.03.0300.tar.gz"
+ sha1 "0f41b4678b513aa70f14b03803af92a7abf1e179"
bottle do
- cellar :any
- sha1 "12578b9af31ef6acdcbd3afd4f30d4f6ff3d66c3" => :mavericks
- sha1 "34051761751ad9e60217f7c13d5988146f734f06" => :mountain_lion
- sha1 "caef85b8bc14586dfaf482943fbd20b53a9e70ec" => :lion
end
depends_on "openssl"
@@ -18,10 +13,8 @@ class Psqlodbc < Formula
depends_on :postgresql
def install
- args = ["--prefix=#{prefix}",
- "--with-unixodbc=#{Formula['unixodbc'].prefix}"]
-
- system "./configure", *args
+ system "./configure", "--prefix=#{prefix}",
+ "--with-unixodbc=#{Formula["unixodbc"].prefix}"
system "make"
system "make", "install"
end