064a38b791
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
12 lines
308 B
Ruby
12 lines
308 B
Ruby
require 'formula'
|
|
|
|
class Libtiff <Formula
|
|
url 'http://download.osgeo.org/libtiff/tiff-3.9.4.zip'
|
|
homepage 'http://www.remotesensing.org/libtiff/'
|
|
md5 '95b112997641096d97344b1a5dc61e71'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
|
|
system "make install"
|
|
end
|
|
end
|