homebrew-core/Formula/szip.rb

13 lines
380 B
Ruby
Raw Normal View History

2010-02-11 18:01:59 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Szip < Formula
2010-02-11 18:01:59 +00:00
url 'http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz'
homepage 'http://www.hdfgroup.org/HDF5/release/obtain5.html#extlibs'
md5 '902f831bcefb69c6b635374424acbead'
2010-02-11 18:01:59 +00:00
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end