homebrew-core/Formula/szip.rb
Adam Vandenberg 7e6d286cbc szip: fix md5
2011-05-10 20:29:17 -07:00

12 lines
380 B
Ruby

require 'formula'
class Szip < Formula
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 '63894a65bc470011fd2049f3ca65d2bf'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end