aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/chipmunk.rb
blob: 6444238cd3f45458faa9af3325399075c676023b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Chipmunk < Formula
  homepage 'http://chipmunk-physics.net/'
  url 'https://chipmunk-physics.net/release/Chipmunk-6.x/Chipmunk-6.2.1.tgz'
  sha1 '593a15a9032586e56b16d22d84f4f04c1f11a44e'

  depends_on 'cmake' => :build

  def install
    system "cmake", "-DCMAKE_INSTALL_PREFIX=#{prefix}",
                    "-DCMAKE_BUILD_TYPE=Release",
                    "-DBUILD_DEMOS=OFF",
                    "."
    system "make install"
  end
end