From f740d7114110012e410b8aa08de9cc5f9ae8e56d Mon Sep 17 00:00:00 2001 From: Fernando Mut Date: Wed, 5 Mar 2014 13:23:57 -0300 Subject: itsol 2.0 ITSOL is a library of iterative solvers for general sparse linear systems of equations. Closes #27224. Signed-off-by: Adam Vandenberg --- Library/Formula/itsol.rb | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Library/Formula/itsol.rb diff --git a/Library/Formula/itsol.rb b/Library/Formula/itsol.rb new file mode 100644 index 000000000..3c328a9cf --- /dev/null +++ b/Library/Formula/itsol.rb @@ -0,0 +1,15 @@ +require "formula" + +class Itsol < Formula + homepage "http://www-users.cs.umn.edu/~saad/software/ITSOL" + url "http://www-users.cs.umn.edu/~saad/software/ITSOL/ITSOL_2.tar.gz" + sha1 "c7af215aaa6ab377521ba317eccf6859165ebefb" + + depends_on :fortran + + def install + system "make" + lib.install("LIB/libitsol.a") + (include/"itsol").install Dir["INC/*.h"] + end +end -- cgit v1.2.3