homebrew-core/Formula/spatialindex.rb
Ian Lancaster 09f1385cfc spatialindex 1.8.0
Closes Homebrew/homebrew#18035.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-02-23 09:05:58 -08:00

13 lines
360 B
Ruby

require 'formula'
class Spatialindex < Formula
homepage 'http://libspatialindex.github.com'
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