42 lines
1.4 KiB
Ruby
42 lines
1.4 KiB
Ruby
class Glbinding < Formula
|
|
desc "C++ binding for the OpenGL API"
|
|
homepage "https://github.com/cginternals/glbinding"
|
|
url "https://github.com/cginternals/glbinding/archive/v2.1.2.tar.gz"
|
|
sha256 "d453d375d3e578fc5990ec41ad648d2ad3de73917a448ff6042bd9f555c0c0c0"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "0bfa8cc86b4780171fa6d3f0291b7a42df4ac0dad2515e3ebfc48a4251053a84" => :sierra
|
|
sha256 "e9f164a73222dfb97042204c213f2fba91362cfe60d736a1837124018447b807" => :el_capitan
|
|
sha256 "c0601d21497363fd8c855c0ae8dc8dd799fa9eabd2253aa03dacf8bc0fd18dc2" => :yosemite
|
|
end
|
|
|
|
option "with-glfw", "Enable tools that display OpenGL information for your system"
|
|
|
|
depends_on "cmake" => :build
|
|
depends_on "glfw" => :optional
|
|
needs :cxx11
|
|
|
|
def install
|
|
ENV.cxx11
|
|
args = std_cmake_args
|
|
args << "-DGLFW_LIBRARY_RELEASE=" if build.without? "glfw"
|
|
system "cmake", ".", *args
|
|
system "cmake", "--build", ".", "--target", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.cpp").write <<-EOS.undent
|
|
#include <glbinding/gl/gl.h>
|
|
#include <glbinding/Binding.h>
|
|
int main(void)
|
|
{
|
|
glbinding::Binding::initialize();
|
|
}
|
|
EOS
|
|
system ENV.cxx, "-o", "test", "test.cpp", "-std=c++11", "-stdlib=libc++",
|
|
"-I#{include}/glbinding", "-I#{lib}/glbinding",
|
|
"-lglbinding", *ENV.cflags.to_s.split
|
|
system "./test"
|
|
end
|
|
end
|