aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sundials.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/Library/Formula/sundials.rb b/Library/Formula/sundials.rb
new file mode 100644
index 000000000..2411d72b8
--- /dev/null
+++ b/Library/Formula/sundials.rb
@@ -0,0 +1,13 @@
+require 'formula'
+
+class Sundials < Formula
+ url 'https://computation.llnl.gov/casc/sundials/download/code/sundials-2.4.0.tar.gz'
+ homepage 'https://computation.llnl.gov/casc/sundials/main.html'
+ md5 '4dbe9b98e66cf7670f42ecb73bf8216e'
+
+ def install
+ system "./configure", "--disable-debug", "--disable-dependency-tracking",
+ "--prefix=#{prefix}"
+ system "make install"
+ end
+end