aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/spatialindex.rb
blob: 2fb7dcd8a799901f648a21133e2754dca0b12105 (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.7.1.tar.gz'
  sha1 '1c08fe9e25679b26bf4d26dddf4bbc2e828a35e9'

  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug"
    system "make"
    system "make install"
  end
end