homebrew-core/Formula/assimp.rb

75 lines
2.2 KiB
Ruby

class Assimp < Formula
desc "Portable library for importing many well-known 3D model formats"
homepage "https://www.assimp.org/"
url "https://github.com/assimp/assimp/archive/v5.0.1.tar.gz"
sha256 "11310ec1f2ad2cd46b95ba88faca8f7aaa1efe9aa12605c55e3de2b977b3dbfc"
license :cannot_represent
head "https://github.com/assimp/assimp.git", branch: "master"
bottle do
sha256 cellar: :any, arm64_big_sur: "0571a9c07e7166cbfbd2c12b17f121c718204491501f268cdd904791df3c3697"
sha256 cellar: :any, big_sur: "8cd36113e1e7db18e625e652a522374bf6158306254f31627f2e8f067ae665db"
sha256 cellar: :any, catalina: "b2450bc0cc287a25a2e4ca42ff229ee104a6de51ef3a8cc02603850572126f18"
sha256 cellar: :any, mojave: "4ee11342b9d284810e88828be1662ee5be09a161f2c1353648e63255bbf4375b"
sha256 cellar: :any_skip_relocation, x86_64_linux: "28a1c666ece91069a06490a3ea899a7f4051950f47b5e703fed96b0f22e04347"
end
depends_on "cmake" => :build
uses_from_macos "zlib"
def install
args = std_cmake_args
args << "-DASSIMP_BUILD_TESTS=OFF"
args << "-DCMAKE_INSTALL_RPATH=#{rpath}"
system "cmake", *args
system "make", "install"
end
test do
# Library test.
(testpath/"test.cpp").write <<~EOS
#include <assimp/Importer.hpp>
int main() {
Assimp::Importer importer;
return 0;
}
EOS
system ENV.cc, "-std=c++11", "test.cpp", "-L#{lib}", "-lassimp", "-o", "test"
system "./test"
# Application test.
(testpath/"test.obj").write <<~EOS
# WaveFront .obj file - a single square based pyramid
# Start a new group:
g MySquareBasedPyramid
# List of vertices:
# Front left
v -0.5 0 0.5
# Front right
v 0.5 0 0.5
# Back right
v 0.5 0 -0.5
# Back left
v -0.5 0 -0.5
# Top point (top of pyramid).
v 0 1 0
# List of faces:
# Square base (note: normals are placed anti-clockwise).
f 4 3 2 1
# Triangle on front
f 1 2 5
# Triangle on back
f 3 4 5
# Triangle on left side
f 4 1 5
# Triangle on right side
f 2 3 5
EOS
system bin/"assimp", "export", "test.obj", "test.ply"
end
end