aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authornibbles 2bits2012-06-11 21:49:04 -0700
committerAdam Vandenberg2012-06-11 21:58:04 -0700
commitaa83c842c78b8958c5a368974bbd164198325d4e (patch)
tree0e21b96dcb0eb84a789491765aa917e35eb0a327 /Library/Formula
parente1cb35d61d82ada589b64075b174ca96612c5919 (diff)
downloadhomebrew-aa83c842c78b8958c5a368974bbd164198325d4e.tar.bz2
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 <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/skytools.rb6
1 files changed, 3 insertions, 3 deletions
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