blob: 1aab29ad3faf8fb8052633440a6e006caaf2da77 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
  | 
require 'formula'
class Spatialindex < Formula
  homepage 'http://libspatialindex.github.com'
  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
  |