blob: 8e3a1a504dadb1cccb4b25dded4f5c049468ef5c (
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-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
|