homebrew-core/Formula/hdf5.rb
Camillo Lugaresi 72643b1ebe updated hdf5 to version 1.8.6
This is particularly urgent because, as of this writing, the url for 1.8.5-patch1 is no longer active, making the old version impossible to install.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-02-22 09:27:57 -08:00

15 lines
393 B
Ruby

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