aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/geos.rb
blob: 28295aa2165f1eaf788add969e616f27b3b83169 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

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

  def skip_clean? path
    path.extname == '.la'
  end

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