class Dartsim < Formula desc "Dynamic Animation and Robotics Toolkit" homepage "https://dartsim.github.io/" url "https://github.com/dartsim/dart/archive/v6.11.1.tar.gz" sha256 "1a59b9d8f55433ad111089431826cd8abbec71f61c72a8558b655d92164f8de4" license "BSD-2-Clause" revision 1 bottle do sha256 arm64_big_sur: "5070a3440374bc2e297198cd0cd2e0da7176f84fcf96efebe2c349ef41a98866" sha256 big_sur: "e56b5670f3dad559c425d84805fdf865cc243ac3174b7e359e5dd578327e4173" sha256 catalina: "b191f73551ec54bec354249620cf40e9ef99002f0d4a1b239aae5667ad58981a" sha256 mojave: "0c8ae1513a9a671caddc3b8379fe2b5751c86041c488c2db9a1fef6c230da333" end depends_on "cmake" => :build depends_on "pkg-config" => :build depends_on "assimp" depends_on "boost" depends_on "bullet" depends_on "eigen" depends_on "fcl" depends_on "flann" depends_on "ipopt" depends_on "libccd" depends_on "nlopt" depends_on "ode" depends_on "open-scene-graph" depends_on "tinyxml2" depends_on "urdfdom" def install ENV.cxx11 args = std_cmake_args if OS.mac? # Force to link to system GLUT (see: https://cmake.org/Bug/view.php?id=16045) glut_lib = "#{MacOS.sdk_path}/System/Library/Frameworks/GLUT.framework" args << "-DGLUT_glut_LIBRARY=#{glut_lib}" end mkdir "build" do system "cmake", "..", *args, "-DCMAKE_INSTALL_RPATH=#{rpath}" system "make", "install" end # Clean up the build file garbage that has been installed. rm_r Dir["#{share}/doc/dart/**/CMakeFiles/"] end test do (testpath/"test.cpp").write <<~EOS #include int main() { auto world = std::make_shared(); assert(world != nullptr); return 0; } EOS system ENV.cxx, "test.cpp", "-I#{Formula["eigen"].include}/eigen3", "-I#{include}", "-L#{lib}", "-ldart", "-L#{Formula["assimp"].opt_lib}", "-lassimp", "-L#{Formula["boost"].opt_lib}", "-lboost_system", "-std=c++14", "-o", "test" system "./test" end end