da1969bccf
Closes Homebrew/homebrew#44219. Signed-off-by: Baptiste Fontaine <batifon@yahoo.fr>
72 lines
2.3 KiB
Ruby
72 lines
2.3 KiB
Ruby
class Libepoxy < Formula
|
|
desc "Library for handling OpenGL function pointer management"
|
|
homepage "https://github.com/anholt/libepoxy"
|
|
url "https://github.com/anholt/libepoxy/archive/v1.3.1.tar.gz"
|
|
sha256 "6700ddedffb827b42c72cce1e0be6fba67b678b19bf256e1b5efd3ea38cc2bb4"
|
|
|
|
bottle do
|
|
cellar :any
|
|
sha256 "3551c12b29c78c909f6b4cd9b09cc75dded48332be5122679a3662963d8721c0" => :el_capitan
|
|
sha256 "4c4c34f77832f75974a9ce48020391a03830b5649a6759253ce208a6eca63074" => :yosemite
|
|
sha256 "edc04249dcc083ed487de29eb8401d788fbcfed58988ebe6a75e1cae5613831f" => :mavericks
|
|
sha256 "495b9da3d417b836eaf1cdd1aba41782d975d0b3d007e1f9c91fab7e57c2a197" => :mountain_lion
|
|
end
|
|
|
|
option :universal
|
|
|
|
depends_on "pkg-config" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "autoconf" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on :python => :build if MacOS.version <= :snow_leopard
|
|
|
|
resource "xorg-macros" do
|
|
url "http://xorg.freedesktop.org/releases/individual/util/util-macros-1.19.0.tar.bz2"
|
|
sha256 "2835b11829ee634e19fa56517b4cfc52ef39acea0cd82e15f68096e27cbed0ba"
|
|
end
|
|
|
|
def install
|
|
ENV.universal_binary if build.universal?
|
|
|
|
resource("xorg-macros").stage do
|
|
system "./configure", "--prefix=#{buildpath}/xorg-macros"
|
|
system "make", "install"
|
|
end
|
|
|
|
ENV.append_path "PKG_CONFIG_PATH", "#{buildpath}/xorg-macros/share/pkgconfig"
|
|
ENV.append_path "ACLOCAL_PATH", "#{buildpath}/xorg-macros/share/aclocal"
|
|
|
|
system "./autogen.sh", "--disable-dependency-tracking",
|
|
"--prefix=#{prefix}"
|
|
system "make"
|
|
system "make", "install"
|
|
end
|
|
|
|
test do
|
|
(testpath/"test.c").write <<-EOS.undent
|
|
|
|
#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", "-lepoxy", "-framework", "OpenGL", "-o", "test"
|
|
system "ls", "-lh", "test"
|
|
system "file", "test"
|
|
system "./test"
|
|
end
|
|
end
|