diff options
| author | Adam Vandenberg | 2012-02-09 23:01:21 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-09 23:08:04 -0800 |
| commit | 7ce7f2de64af0596b0eedab464d6f3e5938c0166 (patch) | |
| tree | 9dd2e46bc12e52c0dac562277c682408bde12356 | |
| parent | a19ba5d665f93838fece6997f2c6a08459932d7f (diff) | |
| download | homebrew-7ce7f2de64af0596b0eedab464d6f3e5938c0166.tar.bz2 | |
saga-core: style update
| -rw-r--r-- | Library/Formula/saga-core.rb | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/Library/Formula/saga-core.rb b/Library/Formula/saga-core.rb index c5343f878..6d7343664 100644 --- a/Library/Formula/saga-core.rb +++ b/Library/Formula/saga-core.rb @@ -1,20 +1,19 @@ require 'formula' class SagaCore < Formula - url 'http://download.saga.cct.lsu.edu/saga-core/saga-core-1.6.tgz' - head 'https://svn.cct.lsu.edu/repos/saga/core/trunk/', :using => :svn homepage 'http://saga-project.org' + url 'http://download.saga.cct.lsu.edu/saga-core/saga-core-1.6.tgz' md5 'a5cda84bdae1f96646f39fda0aa7db73' + head 'https://svn.cct.lsu.edu/repos/saga/core/trunk/', :using => :svn + depends_on 'boost' depends_on 'postgresql' def install - args = ["--prefix=#{prefix}", - "--with-boost=#{HOMEBREW_PREFIX}", - "--with-postgresql=#{HOMEBREW_PREFIX}"] - - system "./configure", *args + system "./configure", "--prefix=#{prefix}", + "--with-boost=#{HOMEBREW_PREFIX}", + "--with-postgresql=#{HOMEBREW_PREFIX}" system "make install" end end |
