homebrew-core/Formula/hdf5.rb
Michael Wild 01b5498ec9 Fix version information in hdf5 formula
Signed-off-by: Michael Wild <themiwi@users.sourceforge.net>
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-17 18:45:25 -07:00

15 lines
398 B
Ruby

require 'formula'
class Hdf5 <Formula
url 'http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.4-patch1.tar.bz2'
version '1.8.4-patch1'
homepage 'http://www.hdfgroup.org/HDF5/'
md5 'b19f4dfbf654a2af3653c492fc1c7513'
depends_on 'szip'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end