homebrew-core/Formula/spatialindex.rb
Mike Naberezny f694213654 Update GitHub Pages links that are now 301 redirects
Closes Homebrew/homebrew#26527.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-02-08 09:54:18 -08:00

13 lines
359 B
Ruby

require 'formula'
class Spatialindex < Formula
homepage 'http://libspatialindex.github.io'
url 'http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.0.tar.gz'
sha1 '490347eaedc543298687dfbdf74853808b0afb3f'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make"
system "make install"
end
end