aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/geos.rb
blob: 7441dc1ea22135ce5e6055ddfdba2e896e96d925 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Geos <Formula
  url 'http://download.osgeo.org/geos/geos-3.1.1.tar.bz2'
  homepage 'http://trac.osgeo.org/geos/'
  md5 '196f4424aa4ef94476e6886d3a964fb6'

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