homebrew-core/Formula/szip.rb

17 lines
481 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
homepage 'http://www.hdfgroup.org/HDF5/release/obtain5.html#extlibs'
2013-01-28 03:10:59 +00:00
url 'http://www.hdfgroup.org/ftp/lib-external/szip/2.1/src/szip-2.1.tar.gz'
sha1 'd241c9acc26426a831765d660b683b853b83c131'
2010-02-11 18:01:59 +00:00
option :universal
2010-02-11 18:01:59 +00:00
def install
ENV.universal_binary if build.universal?
2013-01-28 03:10:59 +00:00
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
2010-02-11 18:01:59 +00:00
system "make install"
end
end