From 8fdf6128b129ff2c078977e318220e5fddb4440f Mon Sep 17 00:00:00 2001 From: Fabien Benureau Date: Fri, 3 Aug 2012 12:37:18 +0200 Subject: ode: add --enable-double-precision Closes #13912. --- Library/Formula/ode.rb | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/Library/Formula/ode.rb b/Library/Formula/ode.rb index 03c42b20b..82c585e32 100644 --- a/Library/Formula/ode.rb +++ b/Library/Formula/ode.rb @@ -7,21 +7,26 @@ class Ode < Formula head 'http://opende.svn.sourceforge.net/svnroot/opende/trunk' + option 'enable-double-precision', 'Compile ODE with double precision' + depends_on 'pkg-config' => :build if build.head? - # Requires newer automake and libtool - depends_on 'automake' => :build - depends_on 'libtool' => :build + depends_on :automake + depends_on :libtool end 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", "--prefix=#{prefix}", "--disable-demos" + system "./configure", *args system "make" system "make install" end -- cgit v1.2.3