54 lines
1.6 KiB
Ruby
54 lines
1.6 KiB
Ruby
class Libepoxy < Formula
|
|
desc "Library for handling OpenGL function pointer management"
|
|
homepage "https://github.com/anholt/libepoxy"
|
|
url "https://download.gnome.org/sources/libepoxy/1.5/libepoxy-1.5.4.tar.xz"
|
|
sha256 "0bd2cc681dfeffdef739cb29913f8c3caa47a88a451fd2bc6e606c02997289d2"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "96e139bc93053e6bb0a03201169e16c6112ef0ab27cdc648d35a26f2d786855c" => :catalina
|
|
sha256 "c2f968269360ad31b30d6635d234cdc82e926fd109f3ac3aa4eb2a71f27f3ceb" => :mojave
|
|
sha256 "3ed4dbf8d3715738c5226c0466b7ace7a57b4a49dc838d3260d5d8acd82c1a07" => :high_sierra
|
|
end
|
|
|
|
depends_on "meson" => :build
|
|
depends_on "ninja" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "python" => :build
|
|
|
|
def install
|
|
mkdir "build" do
|
|
system "meson", "--prefix=#{prefix}", ".."
|
|
system "ninja"
|
|
system "ninja", "install"
|
|
end
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
|
|
#include <epoxy/gl.h>
|
|
#include <OpenGL/CGLContext.h>
|
|
#include <OpenGL/CGLTypes.h>
|
|
int main()
|
|
{
|
|
CGLPixelFormatAttribute attribs[] = {0};
|
|
CGLPixelFormatObj pix;
|
|
int npix;
|
|
CGLContextObj ctx;
|
|
|
|
CGLChoosePixelFormat( attribs, &pix, &npix );
|
|
CGLCreateContext(pix, (void*)0, &ctx);
|
|
|
|
glClear(GL_COLOR_BUFFER_BIT);
|
|
CGLReleasePixelFormat(pix);
|
|
CGLReleaseContext(pix);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "test.c", "-L#{lib}", "-lepoxy", "-framework", "OpenGL", "-o", "test"
|
|
system "ls", "-lh", "test"
|
|
system "file", "test"
|
|
system "./test"
|
|
end
|
|
end
|