diff options
| author | Rike-Benjamin Schuppner | 2010-10-10 15:22:46 +0200 |
|---|---|---|
| committer | Adam Vandenberg | 2010-10-14 08:38:13 -0700 |
| commit | e9157ec81b7f71bc469486b9d8a9cb92f8855190 (patch) | |
| tree | 73408339423667121362cbba68af06f83cb8f45d /Library/Formula/blitz.rb | |
| parent | 8ea5b26246d2758396407898d7c4d6d0302d9871 (diff) | |
| download | homebrew-e9157ec81b7f71bc469486b9d8a9cb92f8855190.tar.bz2 | |
New formula: blitz
Blitz++ is a C++ class library for scientific computing which provides
performance on par with Fortran 77/90.
Unfortunately, blitz++ is a bit outdated by Oct 2010.
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/blitz.rb')
| -rw-r--r-- | Library/Formula/blitz.rb | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Library/Formula/blitz.rb b/Library/Formula/blitz.rb new file mode 100644 index 000000000..2c0845412 --- /dev/null +++ b/Library/Formula/blitz.rb @@ -0,0 +1,18 @@ +require 'formula' + +class Blitz <Formula + url 'http://downloads.sourceforge.net/project/blitz/blitz/Blitz%2B%2B%200.9/blitz-0.9.tar.gz' + homepage 'http://oonumerics.org/blitz' + md5 '031df2816c73e2d3bd6d667bbac19eca' + version '0.9' + + def install + system "./configure", "--disable-debug", "--disable-dependency-tracking", + "--infodir=#{info}", + "--enable-shared", + "--disable-doxygen", + "--disable-dot", + "--prefix=#{prefix}" + system "make install" + end +end |
