homebrew-core/Formula/spatialindex.rb
Wade Simmons 83f79f8ef5 update spatialindex to 1.5.0
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-05-10 19:59:52 -07:00

13 lines
356 B
Ruby

require 'formula'
class Spatialindex <Formula
url 'http://download.osgeo.org/libspatialindex/spatialindex-src-1.5.0.tar.gz'
homepage 'http://trac.gispython.org/spatialindex/'
md5 '5d409794d860505b93f8935d98a6d173'
def install
system "./configure", "--prefix=#{prefix}", "--disable-debug"
system "make"
system "make install"
end
end