blob: 4b1a09fc640cccccab3a08d5907a26a9c0adb24b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Spatialindex < Formula
homepage 'http://libspatialindex.github.io'
url 'http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.0.tar.gz'
sha1 '490347eaedc543298687dfbdf74853808b0afb3f'
def install
system "./configure", "--disable-debug", "--prefix=#{prefix}"
system "make"
system "make install"
end
end
|