homebrew-core/Formula/blitz.rb

28 lines
927 B
Ruby
Raw Normal View History

2011-03-10 05:11:03 +00:00
class Blitz < Formula
desc "C++ class library for scientific computing"
homepage "http://blitz.sourceforge.net"
url "https://downloads.sourceforge.net/project/blitz/blitz/Blitz++%200.10/blitz-0.10.tar.gz"
sha256 "804ef0e6911d43642a2ea1894e47c6007e4c185c866a7d68bad1e4c8ac4e6f94"
2013-09-20 15:15:51 +00:00
head do
url "http://blitz.hg.sourceforge.net:8000/hgroot/blitz/blitz", :using => :hg
2014-12-04 22:38:00 +00:00
depends_on "autoconf" => :build
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
2012-08-23 04:33:24 +00:00
system "autoreconf", "-fi" if build.head?
system "./configure", "--disable-debug",
"--disable-dependency-tracking",
"--infodir=#{info}",
"--enable-shared",
"--disable-doxygen",
"--disable-dot",
"--prefix=#{prefix}"
system "make", "install"
end
end