44d764963a
`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.
12 lines
344 B
Ruby
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
|