64321d9d76
ITSOL is a library of iterative solvers for general sparse linear systems of equations. Closes Homebrew/homebrew#27224. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
15 lines
370 B
Ruby
15 lines
370 B
Ruby
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
|