homebrew-core/Formula/spatialindex.rb
Charlie Sharpsteen 7809ac3199 Update Spatialindex to 1.6.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2011-03-07 10:29:19 -08:00

13 lines
356 B
Ruby

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