homebrew-core/Formula/libtiff.rb

18 lines
494 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Libtiff < Formula
homepage 'http://www.remotesensing.org/libtiff/'
url 'http://download.osgeo.org/libtiff/tiff-4.0.2.tar.gz'
sha256 'aa29f1f5bfe3f443c3eb4dac472ebde15adc8ff0464b83376f35e3b2fef935da'
2012-08-10 05:16:18 +00:00
option :universal
def install
2012-08-10 05:16:18 +00:00
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--without-x",
"--prefix=#{prefix}"
system "make install"
end
end