homebrew-core/Formula/libtiff.rb
Brett Koonce 1bbc51edce libtiff 4.0.2
Closes Homebrew/homebrew#13702.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-07-28 15:40:28 -07:00

20 lines
528 B
Ruby

require 'formula'
class Libtiff < Formula
homepage 'http://www.remotesensing.org/libtiff/'
url 'http://download.osgeo.org/libtiff/tiff-4.0.2.tar.gz'
sha256 'aa29f1f5bfe3f443c3eb4dac472ebde15adc8ff0464b83376f35e3b2fef935da'
depends_on :x11
def options
[["--universal", "Builds a universal binary"]]
end
def install
ENV.universal_binary if ARGV.build_universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end