homebrew-core/Formula/ode.rb

24 lines
644 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Ode < Formula
# Build from svn to get Snow Leopard fixes.
url 'http://opende.svn.sourceforge.net/svnroot/opende/trunk', :revision => 1760
version 'r1760'
homepage 'http://www.ode.org/'
head 'http://opende.svn.sourceforge.net/svnroot/opende/trunk'
if MacOS.xcode_version >= "4.3"
# find a proper tarball with configure and remove autogen and these deps
depends_on "automake" => :build
depends_on "libtool" => :build
end
def install
ENV.j1
system "sh autogen.sh"
system "./configure", "--prefix=#{prefix}", "--disable-demos"
system "make"
system "make install"
end
end