2011-05-23 15:23:49 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Sundials < Formula
|
|
|
|
homepage 'https://computation.llnl.gov/casc/sundials/main.html'
|
2012-07-29 22:54:12 +00:00
|
|
|
url 'https://computation.llnl.gov/casc/sundials/download/code/sundials-2.5.0.tar.gz'
|
|
|
|
sha1 '9affcc525269e80c8ec6ae1db1e0a0ff201d07e0'
|
2011-05-23 15:23:49 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|