homebrew-core/Formula/blitz.rb
Rike-Benjamin Schuppner b2bbb296f1 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>
2010-10-14 08:38:13 -07:00

18 lines
592 B
Ruby

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