76 lines
2.5 KiB
Ruby
76 lines
2.5 KiB
Ruby
class Cogl < Formula
|
|
desc "Low level OpenGL abstraction library developed for Clutter"
|
|
homepage "https://gitlab.gnome.org/GNOME/cogl"
|
|
url "https://download.gnome.org/sources/cogl/1.22/cogl-1.22.8.tar.xz"
|
|
sha256 "a805b2b019184710ff53d0496f9f0ce6dcca420c141a0f4f6fcc02131581d759"
|
|
license all_of: ["MIT", "SGI-B-2.0", "BSD-3-Clause", :public_domain]
|
|
head "https://gitlab.gnome.org/GNOME/cogl.git", branch: "cogl-1.22"
|
|
|
|
bottle do
|
|
sha256 arm64_monterey: "619709d99ff34b8468b4036dad1a23a355e10672ccffc109cf093d57183c3ae8"
|
|
sha256 arm64_big_sur: "9a487a4bf7fbe5fdec29d902ba668fe20cbbc05e66864cb8d9c5fe564373e586"
|
|
sha256 monterey: "b1770215a0378766b70f4337b6ca2608c54fbe78568cff08363dea00dfbc1b23"
|
|
sha256 big_sur: "ec1ef03d2e1e855ae5277a2f599fb7ed83c221f0ae29d8c8a5f45277be96d869"
|
|
sha256 catalina: "37fdd46a2845adf0e8f4ce85d5a80384ea235e435ef5f42167622f5224e4e51f"
|
|
sha256 mojave: "eb37baaa178631afac43c8bb1c93cdf9b78dd7d44862c63dec598d54a51b201e"
|
|
sha256 high_sierra: "46de52386a1123e828d94598279a99a88e3819d8f1dac1a51f39850a321ff7f2"
|
|
sha256 x86_64_linux: "2e1af63ab7d9ffcfca78804cdcab02d3b60969c52c038d89a7a7caa42afd4c00"
|
|
end
|
|
|
|
# https://blogs.gnome.org/clutter/2022/02/16/retiring-clutter/
|
|
deprecate! date: "2022-09-21", because: :deprecated_upstream
|
|
|
|
depends_on "gobject-introspection" => :build
|
|
depends_on "pkg-config" => :build
|
|
depends_on "cairo"
|
|
depends_on "gdk-pixbuf"
|
|
depends_on "glib"
|
|
depends_on "pango"
|
|
|
|
on_linux do
|
|
depends_on "libxcomposite"
|
|
depends_on "mesa"
|
|
end
|
|
|
|
def install
|
|
# Don't dump files in $HOME.
|
|
ENV["GI_SCANNER_DISABLE_CACHE"] = "yes"
|
|
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--enable-cogl-pango=yes
|
|
--enable-introspection=yes
|
|
]
|
|
|
|
if OS.mac?
|
|
args << "--disable-glx"
|
|
args << "--without-x"
|
|
else
|
|
args << "--enable-xlib-egl-platform=yes"
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make", "install"
|
|
end
|
|
test do
|
|
(testpath/"test.c").write <<~EOS
|
|
#include <cogl/cogl.h>
|
|
|
|
int main()
|
|
{
|
|
CoglColor *color = cogl_color_new();
|
|
cogl_color_free(color);
|
|
return 0;
|
|
}
|
|
EOS
|
|
system ENV.cc, "-I#{include}/cogl",
|
|
"-I#{Formula["glib"].opt_include}/glib-2.0",
|
|
"-I#{Formula["glib"].opt_lib}/glib-2.0/include",
|
|
testpath/"test.c", "-o", testpath/"test",
|
|
"-L#{lib}", "-lcogl"
|
|
system "./test"
|
|
end
|
|
end
|