homebrew-core/Formula/szip.rb
Lionel Koenig 74bd7871f4 szip, hdf5, fann: add --universal
Closes Homebrew/homebrew#17237.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-01-26 17:13:41 -08:00

15 lines
455 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'
sha1 'd241c9acc26426a831765d660b683b853b83c131'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
system "make install"
end
end