95884bae22
Closes Homebrew/homebrew#42407. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
27 lines
927 B
Ruby
27 lines
927 B
Ruby
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"
|
|
|
|
head do
|
|
url "http://blitz.hg.sourceforge.net:8000/hgroot/blitz/blitz", :using => :hg
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
end
|
|
|
|
def install
|
|
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
|