2010-02-11 18:01:59 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Hdf5 <Formula
|
2010-04-21 14:07:59 +00:00
|
|
|
url 'http://www.hdfgroup.org/ftp/HDF5/current/src/hdf5-1.8.4-patch1.tar.bz2'
|
2010-05-15 20:08:18 +00:00
|
|
|
version '1.8.4-patch1'
|
2010-02-11 18:01:59 +00:00
|
|
|
homepage 'http://www.hdfgroup.org/HDF5/'
|
2010-04-21 14:07:59 +00:00
|
|
|
md5 'b19f4dfbf654a2af3653c492fc1c7513'
|
2010-02-11 18:01:59 +00:00
|
|
|
|
|
|
|
depends_on 'szip'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|