homebrew-core/Formula/gtk4.rb

88 lines
2.7 KiB
Ruby

class Gtk4 < Formula
desc "Toolkit for creating graphical user interfaces"
homepage "https://gtk.org/"
url "https://download.gnome.org/sources/gtk/4.0/gtk-4.0.3.tar.xz"
sha256 "d7c9893725790b50bd9a3bb278856d9d543b44b6b9b951d7b60e7bdecc131890"
license "LGPL-2.0-or-later"
revision 1
livecheck do
url :stable
regex(/gtk[._-](4\.([0-8]\d*?)?[02468](?:\.\d+)*?)\.t/i)
end
bottle do
sha256 arm64_big_sur: "6a881a170ad24d34196de0349be1b9c041159670ff66789e456297832a595b5e"
sha256 big_sur: "1bd01fcdb2587a1a0fdabcb5bdf34987ff0ad4e9f4f4a032adc9773c61388559"
sha256 catalina: "8d0476ce96fa1fe507542827898eb0e4fd8c0e8c78472ecbaf76afe972deaa8d"
sha256 mojave: "1afd8e4c4eaae15e35101040494cfae05b441bf5568463b9f602add60cb255c1"
end
depends_on "docbook" => :build
depends_on "docbook-xsl" => :build
depends_on "gobject-introspection" => :build
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => [:build, :test]
depends_on "sassc" => :build
depends_on "gdk-pixbuf"
depends_on "glib"
depends_on "graphene"
depends_on "hicolor-icon-theme"
depends_on "libepoxy"
depends_on "pango"
uses_from_macos "libxslt" => :build # for xsltproc
def install
args = std_meson_args + %w[
-Dx11-backend=false
-Dmacos-backend=true
-Dgtk_doc=false
-Dman-pages=true
-Dintrospection=enabled
-Dbuild-examples=false
-Dbuild-tests=false
]
args << "-Dprint-cups=disabled" if MacOS.version <= :mojave
# ensure that we don't run the meson post install script
ENV["DESTDIR"] = "/"
# Find our docbook catalog
ENV["XML_CATALOG_FILES"] = "#{etc}/xml/catalog"
# Disable asserts and cast checks explicitly
ENV.append "CPPFLAGS", "-DG_DISABLE_ASSERT -DG_DISABLE_CAST_CHECKS"
mkdir "build" do
system "meson", *args, ".."
system "ninja", "-v"
system "ninja", "install", "-v"
end
end
def post_install
system "#{Formula["glib"].opt_bin}/glib-compile-schemas", "#{HOMEBREW_PREFIX}/share/glib-2.0/schemas"
system bin/"gtk4-update-icon-cache", "-f", "-t", "#{HOMEBREW_PREFIX}/share/icons/hicolor"
system "#{Formula["glib"].opt_bin}/gio-querymodules #{HOMEBREW_PREFIX}/lib/gtk-4.0/4.0.0/printbackends"
end
test do
(testpath/"test.c").write <<~EOS
#include <gtk/gtk.h>
int main(int argc, char *argv[]) {
gtk_disable_setlocale();
return 0;
}
EOS
flags = shell_output("#{Formula["pkg-config"].opt_bin}/pkg-config --cflags --libs gtk4").strip.split
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
# include a version check for the pkg-config files
assert_match version.to_s, shell_output("cat #{lib}/pkgconfig/gtk4.pc").strip
end
end