homebrew-core/Formula/glbinding.rb

37 lines
1 KiB
Ruby
Raw Normal View History

class Glbinding < Formula
homepage "https://github.com/hpicgs/glbinding"
2015-01-11 17:42:32 +00:00
url "https://github.com/hpicgs/glbinding/archive/v1.0.4.tar.gz"
sha1 "1f371b40f6c9c42807aa14d9ef9e1153c95472bf"
2014-12-13 14:18:55 +00:00
bottle do
cellar :any
2015-01-12 06:08:55 +00:00
sha1 "5d2c6520ef505da92d44b9bafad53b032b6796e2" => :yosemite
sha1 "4659c4bcc97959b40cbbc9212a3ff3b91b2df4eb" => :mavericks
sha1 "0f3d59555b51ee9202a7d32a42e6f1aff3e9297d" => :mountain_lion
2014-12-13 14:18:55 +00:00
end
depends_on "cmake" => :build
needs :cxx11
def install
ENV.cxx11
system "cmake", ".", *std_cmake_args
system "make", "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