aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ode.rb
blob: 28ae05f556c84058a326358b94e915c8ddf3011a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
require 'formula'

class Ode < Formula
  homepage 'http://www.ode.org/'
  url 'http://downloads.sourceforge.net/project/opende/ODE/0.12/ode-0.12.tar.bz2'
  sha1 '10e7aae6cc6b1afe523ed52e76afd5e06461ea93'

  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?
    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", *args
    system "make"
    system "make install"
  end
end