From aa83c842c78b8958c5a368974bbd164198325d4e Mon Sep 17 00:00:00 2001 From: nibbles 2bits Date: Mon, 11 Jun 2012 21:49:04 -0700 Subject: skytools 3.0.3 and fix Requirement Upgrade Skytools to version 3.0.3. Change the `satisfied?` section of the Postgresql requirement to look for `postgres` not `pg_config` because the build fails when it can't find the former and because the system Postgresql has the latter binary causing the Requirement to be met while the build would fail. Tested using llvm and clang from XCode-4.3.2. Signed-off-by: Adam Vandenberg --- Library/Formula/skytools.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Library') diff --git a/Library/Formula/skytools.rb b/Library/Formula/skytools.rb index e8ab6f41f..6382bee04 100644 --- a/Library/Formula/skytools.rb +++ b/Library/Formula/skytools.rb @@ -12,7 +12,7 @@ class PostgresqlInstalled < Requirement EOS end def satisfied? - which 'pg_config' + which 'postgres' end def fatal? true @@ -21,8 +21,8 @@ end class Skytools < Formula homepage 'http://pgfoundry.org/projects/skytools/' - url 'http://pgfoundry.org/frs/download.php/2872/skytools-2.1.12.tar.gz' - md5 '94f3391d5b3c3ac6c2edcbfbda705573' + url 'http://pgfoundry.org/frs/download.php/3294/skytools-3.0.3.tar.gz' + sha1 '8894db961216386344ac9f2c47ae4125c64afb0b' depends_on PostgresqlInstalled.new -- cgit v1.2.3