16 lines
385 B
Ruby
16 lines
385 B
Ruby
|
require 'formula'
|
||
|
|
||
|
class Chipmunk <Formula
|
||
|
head 'http://chipmunk-physics.googlecode.com/svn/trunk'
|
||
|
homepage 'http://code.google.com/p/chipmunk-physics/'
|
||
|
|
||
|
depends_on 'cmake'
|
||
|
|
||
|
def install
|
||
|
system "cmake", "-DCMAKE_INSTALL_PREFIX=#{prefix}",
|
||
|
"-DCMAKE_PREFIX_PATH=#{prefix}",
|
||
|
"-DPREFIX=#{prefix}", "."
|
||
|
system "make install"
|
||
|
end
|
||
|
end
|