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

class Ode <Formula
  # Build from svn to get Snow Leopard fixes.
  url 'https://opende.svn.sourceforge.net/svnroot/opende/trunk', :revision => 1760
  version 'r1760'
  homepage 'http://www.ode.org/'
  head 'https://opende.svn.sourceforge.net/svnroot/opende/trunk'

  def install
    ENV.j1
    # only necessary when downloading from svn
    system "sh autogen.sh" unless File.exist? "configure"
    system "./configure", "--prefix=#{prefix}"
    system "make"
    system "make install"
  end
end