2010-03-16 21:52:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Ode <Formula
|
|
|
|
# Build from svn to get Snow Leopard fixes.
|
2010-04-07 05:58:35 +00:00
|
|
|
url 'https://opende.svn.sourceforge.net/svnroot/opende/trunk', :revision => '1728'
|
2010-03-16 21:52:24 +00:00
|
|
|
homepage 'http://www.ode.org/'
|
|
|
|
|
|
|
|
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
|