homebrew-core/Formula/saga-core.rb

20 lines
529 B
Ruby
Raw Normal View History

require 'formula'
class SagaCore < Formula
homepage 'http://saga-project.org'
2012-02-10 07:01:21 +00:00
url 'http://download.saga.cct.lsu.edu/saga-core/saga-core-1.6.tgz'
2012-06-10 21:32:29 +00:00
sha1 '89cc089b4feb5aae01ae5d371477d2d9a5204f1d'
2012-05-10 14:10:12 +00:00
head 'https://svn.cct.lsu.edu/repos/saga/core/trunk/'
2012-02-10 07:01:21 +00:00
depends_on 'boost'
depends_on :postgresql
def install
2012-02-10 07:01:21 +00:00
system "./configure", "--prefix=#{prefix}",
"--with-boost=#{HOMEBREW_PREFIX}",
"--with-postgresql=#{HOMEBREW_PREFIX}"
system "make install"
end
end