4d0db5efbf
Closes Homebrew/homebrew#13750. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
423 B
Ruby
13 lines
423 B
Ruby
require 'formula'
|
|
|
|
class Sundials < Formula
|
|
homepage 'https://computation.llnl.gov/casc/sundials/main.html'
|
|
url 'https://computation.llnl.gov/casc/sundials/download/code/sundials-2.5.0.tar.gz'
|
|
sha1 '9affcc525269e80c8ec6ae1db1e0a0ff201d07e0'
|
|
|
|
def install
|
|
system "./configure", "--disable-debug", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make install"
|
|
end
|
|
end
|