blob: cca079b2c126c34a780dabf992c3fcd8f070018f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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
|