blob: c81bb6f97401c2012009f7a46b85709a20584a8e (
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=#{prefix}/share/man"
system "make install"
end
end
|