f55f6ad228
This package provides a general framework for developing spatial indices. Currently it defines generic interfaces, provides simple main memory and disk based storage managers and a robust implementation of an R*-tree, an MVR-tree and a TPR-tree. In addition, the library includes a 3-dimensional R-tree visualization plug-in (example image below; requires Java3D runtime). http://trac.gispython.org/spatialindex/ Signed-off-by: Pete Gadomski <pete.gadomski@gmail.com> Signed-off-by: David Höppner <0xffea@gmail.com>
13 lines
352 B
Ruby
13 lines
352 B
Ruby
require 'formula'
|
|
|
|
class Spatialindex <Formula
|
|
url 'http://download.osgeo.org/libspatialindex/spatialindex-1.4.0.tar.gz'
|
|
homepage 'http://trac.gispython.org/spatialindex/'
|
|
md5 '2cda512ca12c1a0d52172bb7f82a88f0'
|
|
|
|
def install
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug"
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|