2010-03-16 21:52:24 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ode < Formula
|
2010-03-16 21:52:24 +00:00
|
|
|
homepage 'http://www.ode.org/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/opende/ODE/0.13/ode-0.13.tar.bz2'
|
2014-02-15 17:25:16 +00:00
|
|
|
sha1 '0279d58cc390ff5cc048f2baf96cff23887f3838'
|
2012-05-18 00:45:38 +00:00
|
|
|
|
2013-09-22 01:47:32 +00:00
|
|
|
head do
|
|
|
|
url 'http://opende.svn.sourceforge.net/svnroot/opende/trunk'
|
2010-03-16 21:52:24 +00:00
|
|
|
|
2013-11-13 17:01:29 +00:00
|
|
|
depends_on :autoconf
|
2012-08-03 10:37:18 +00:00
|
|
|
depends_on :automake
|
|
|
|
depends_on :libtool
|
2012-02-28 15:39:22 +00:00
|
|
|
end
|
|
|
|
|
2013-09-22 01:47:32 +00:00
|
|
|
option 'enable-double-precision', 'Compile ODE with double precision'
|
2014-04-30 12:06:04 +00:00
|
|
|
option 'enable-libccd', 'enable all libccd colliders (except box-cylinder)'
|
2013-09-22 01:47:32 +00:00
|
|
|
|
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
|
2010-03-16 21:52:24 +00:00
|
|
|
def install
|
2012-08-03 10:37:18 +00:00
|
|
|
args = ["--prefix=#{prefix}",
|
|
|
|
"--disable-demos"]
|
|
|
|
args << "--enable-double-precision" if build.include? 'enable-double-precision'
|
2014-04-30 12:06:04 +00:00
|
|
|
args << "--enable-libccd" if build.include? "enable-libccd"
|
2012-08-03 10:37:18 +00:00
|
|
|
|
2012-08-27 05:49:12 +00:00
|
|
|
if build.head?
|
2012-05-18 00:45:38 +00:00
|
|
|
ENV['LIBTOOLIZE'] = 'glibtoolize'
|
|
|
|
inreplace 'autogen.sh', 'libtoolize', '$LIBTOOLIZE'
|
|
|
|
system "./autogen.sh"
|
|
|
|
end
|
2012-08-03 10:37:18 +00:00
|
|
|
system "./configure", *args
|
2010-03-16 21:52:24 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|