homebrew-core/Formula/spatialindex.rb
Charlie Sharpsteen 6350b86a48 SpatialIndex: Update to 1.7.1
Also update homepage as the project no longer uses an OSGEO-hosted Trac site.
2012-05-02 13:06:46 -07:00

13 lines
351 B
Ruby

require 'formula'
class Spatialindex < Formula
homepage 'http://libspatialindex.github.com'
url 'http://download.osgeo.org/libspatialindex/spatialindex-src-1.7.1.tar.gz'
md5 '8599243d5d8204f0f8d92cd55ab120f5'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make"
system "make install"
end
end