diff options
| -rw-r--r-- | Library/Formula/itsol.rb | 15 |
1 files changed, 15 insertions, 0 deletions
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 |
