blob: b5c8a8daff8f152598cc16ac2bab07808a685f16 (
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.5.0.tar.gz'
  homepage 'http://trac.gispython.org/spatialindex/'
  md5 '5d409794d860505b93f8935d98a6d173'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug"
    system "make"
    system "make install"
  end
end
  |