aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/libtiff.rb
blob: 4d1dd6704c34ab6e5cd3e278216a3a2cdb745697 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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