2010-03-23 04:50:27 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Spatialindex < Formula
|
2012-05-02 20:06:46 +00:00
|
|
|
homepage 'http://libspatialindex.github.com'
|
2013-02-23 06:56:54 +00:00
|
|
|
url 'http://download.osgeo.org/libspatialindex/spatialindex-src-1.8.0.tar.gz'
|
|
|
|
sha1 '490347eaedc543298687dfbdf74853808b0afb3f'
|
2010-03-23 04:50:27 +00:00
|
|
|
|
|
|
|
def install
|
2013-02-23 06:56:54 +00:00
|
|
|
system "./configure", "--disable-debug", "--prefix=#{prefix}"
|
2010-03-23 04:50:27 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|