homebrew-core/Formula/libtiff.rb
Charlie Sharpsteen 44d764963a libtiff, libgeotiff: Switch to download.osgeo.org
`ftp://download.remotesensing.org` is just a FTP proxy for
`http://download.osgeo.org`. The primary download server for OSGeo went out a
couple of days ago due to a power outage in San Diego. `download.osgeo.org` has
been back for two days, but `download.remotesensing.org` is still out so let's
shorten the server chain and go directly to the source.

This change affects `libtiff` and `libgeotiff`.

Fixes Homebrew/homebrew#7560.
2011-09-11 08:14:31 -07:00

12 lines
344 B
Ruby

require 'formula'
class Libtiff < Formula
homepage 'http://www.remotesensing.org/libtiff/'
url 'http://download.osgeo.org/libtiff/tiff-3.9.5.zip'
sha256 '332d1a658340c41791fce62fb8fff2a5ba04c2e82b8b85e741eb0a7b30e0d127'
def install
system "./configure", "--prefix=#{prefix}", "--mandir=#{man}"
system "make install"
end
end