51 lines
1.5 KiB
Ruby
51 lines
1.5 KiB
Ruby
class Glm < Formula
|
|
desc "C++ mathematics library for graphics software"
|
|
homepage "https://glm.g-truc.net/"
|
|
url "https://github.com/g-truc/glm/releases/download/0.9.9.5/glm-0.9.9.5.zip"
|
|
sha256 "4fe34860ce69156f63eea6c3d84c91cadfc330353cf275ff394aef4e163cafee"
|
|
head "https://github.com/g-truc/glm.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "12ad0bff26df5739227bb1f2865c064b46a1e21faa07e77f19c2be4e2abd8182" => :mojave
|
|
sha256 "534081b8d1624708d52a12d75a31b47372c1711c56057b658c0dbf5fa67306c0" => :high_sierra
|
|
sha256 "b7185a79a24187a43750f740ac07686ef144182eb8006ca0deadbbf4dc037584" => :sierra
|
|
end
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "doxygen" => :build
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "cmake", "..", *std_cmake_args
|
|
system "make", "install"
|
|
end
|
|
|
|
cd "doc" do
|
|
system "doxygen", "man.doxy"
|
|
man.install "html"
|
|
end
|
|
doc.install Dir["doc/*"]
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<~EOS
|
|
#include <glm/vec2.hpp>// glm::vec2
|
|
int main()
|
|
{
|
|
std::size_t const VertexCount = 4;
|
|
std::size_t const PositionSizeF32 = VertexCount * sizeof(glm::vec2);
|
|
glm::vec2 const PositionDataF32[VertexCount] =
|
|
{
|
|
glm::vec2(-1.0f,-1.0f),
|
|
glm::vec2( 1.0f,-1.0f),
|
|
glm::vec2( 1.0f, 1.0f),
|
|
glm::vec2(-1.0f, 1.0f)
|
|
};
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-I#{include}", testpath/"test.cpp", "-o", "test"
|
|
system "./test"
|
|
end
|
|
end
|