70 lines
2.4 KiB
Ruby
70 lines
2.4 KiB
Ruby
class Bullet < Formula
|
|
desc "Physics SDK"
|
|
homepage "http://bulletphysics.org/wordpress/"
|
|
url "https://github.com/bulletphysics/bullet3/archive/2.86.tar.gz"
|
|
sha256 "e6e8b755280ce2c1a8218529eae5dd78e184f7036854229cea611374ad5a671f"
|
|
head "https://github.com/bulletphysics/bullet3.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "6541eb8fbc31e00e68596fcbe5cf9bb8df3bf19da7fd2fd86132fa86eadffe4c" => :sierra
|
|
sha256 "3c5f27941c7790c2dede6e35ff12c931567c1e6d4da106f1072f91caa85e8ce3" => :el_capitan
|
|
sha256 "ec901e1e204253445867e43828415be9beedc47be265f223572730c08b43210f" => :yosemite
|
|
end
|
|
|
|
option "with-framework", "Build frameworks"
|
|
option "with-shared", "Build shared libraries"
|
|
option "with-demo", "Build demo applications"
|
|
option "with-double-precision", "Use double precision"
|
|
|
|
deprecated_option "framework" => "with-framework"
|
|
deprecated_option "shared" => "with-shared"
|
|
deprecated_option "build-demo" => "with-demo"
|
|
deprecated_option "double-precision" => "with-double-precision"
|
|
|
|
depends_on "cmake" => :build
|
|
|
|
def install
|
|
args = ["-DINSTALL_EXTRA_LIBS=ON", "-DBUILD_UNIT_TESTS=OFF"]
|
|
|
|
if build.with? "framework"
|
|
args << "-DBUILD_SHARED_LIBS=ON" << "-DFRAMEWORK=ON"
|
|
args << "-DCMAKE_INSTALL_PREFIX=#{frameworks}"
|
|
args << "-DCMAKE_INSTALL_NAME_DIR=#{frameworks}"
|
|
else
|
|
args << "-DBUILD_SHARED_LIBS=ON" if build.with? "shared"
|
|
args << "-DCMAKE_INSTALL_PREFIX=#{prefix}"
|
|
end
|
|
|
|
args << "-DUSE_DOUBLE_PRECISION=ON" if build.with? "double-precision"
|
|
|
|
# Related to the following warnings when building --with-shared --with-demo
|
|
# https://gist.github.com/scpeters/6afc44f0cf916b11a226
|
|
if build.with?("demo") && (build.with?("shared") || build.with?("framework"))
|
|
raise "Demos cannot be installed with shared libraries or framework."
|
|
end
|
|
|
|
args << "-DBUILD_BULLET2_DEMOS=OFF" if build.without? "demo"
|
|
|
|
system "cmake", *args
|
|
system "make"
|
|
system "make", "install"
|
|
|
|
prefix.install "examples" if build.with? "demo"
|
|
prefix.install "Extras" if build.with? "extra"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include "bullet/LinearMath/btPolarDecomposition.h"
|
|
int main() {
|
|
btMatrix3x3 I = btMatrix3x3::getIdentity();
|
|
btMatrix3x3 u, h;
|
|
polarDecompose(I, u, h);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.cpp", "-L#{lib}", "-lLinearMath", "-lc++", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|