aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorGeoffrey Oxberry2014-06-04 12:59:24 -0700
committerMike McQuaid2014-06-07 08:47:35 +0100
commitf53d5a023af1b700237d9c4f87a4790931bc5f9b (patch)
tree32ab8fbff49b37ee443a4d4f6d60a00d2cf74d43 /Library/Formula
parenta50f224714a153f003aa04e8d1b8abe6f28274d6 (diff)
downloadhomebrew-f53d5a023af1b700237d9c4f87a4790931bc5f9b.tar.bz2
sundials: move to homebrew-science
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/sundials.rb13
1 files changed, 0 insertions, 13 deletions
diff --git a/Library/Formula/sundials.rb b/Library/Formula/sundials.rb
deleted file mode 100644
index 4a901c969..000000000
--- a/Library/Formula/sundials.rb
+++ /dev/null
@@ -1,13 +0,0 @@
-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}", "--enable-shared"
- system "make install"
- end
-end