homebrew-core/Formula/libtiff.rb
2010-02-15 14:51:38 -08:00

12 lines
321 B
Ruby

require 'formula'
class Libtiff <Formula
@url='ftp://ftp.remotesensing.org/libtiff/tiff-3.9.2.tar.gz'
@homepage='http://www.libtiff.org/'
@md5='93e56e421679c591de7552db13384cb8'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--mandir=#{man}"
system "make install"
end
end