1fa022fc55
Closes Homebrew/homebrew#26748.
34 lines
875 B
Ruby
34 lines
875 B
Ruby
require 'formula'
|
|
|
|
class Ode < Formula
|
|
homepage 'http://www.ode.org/'
|
|
url 'http://downloads.sourceforge.net/project/opende/ODE/0.13/ode-0.13.tar.bz2'
|
|
sha1 '0279d58cc390ff5cc048f2baf96cff23887f3838'
|
|
|
|
head do
|
|
url 'http://opende.svn.sourceforge.net/svnroot/opende/trunk'
|
|
|
|
depends_on :autoconf
|
|
depends_on :automake
|
|
depends_on :libtool
|
|
end
|
|
|
|
option 'enable-double-precision', 'Compile ODE with double precision'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
def install
|
|
args = ["--prefix=#{prefix}",
|
|
"--disable-demos"]
|
|
args << "--enable-double-precision" if build.include? 'enable-double-precision'
|
|
|
|
if build.head?
|
|
ENV['LIBTOOLIZE'] = 'glibtoolize'
|
|
inreplace 'autogen.sh', 'libtoolize', '$LIBTOOLIZE'
|
|
system "./autogen.sh"
|
|
end
|
|
system "./configure", *args
|
|
system "make"
|
|
system "make install"
|
|
end
|
|
end
|