homebrew-core/Formula/libdazzle.rb

108 lines
3.3 KiB
Ruby

class Libdazzle < Formula
desc "GNOME companion library to GObject and Gtk+"
homepage "https://gitlab.gnome.org/GNOME/libdazzle"
url "https://download.gnome.org/sources/libdazzle/3.44/libdazzle-3.44.0.tar.xz"
sha256 "3cd3e45eb6e2680cb05d52e1e80dd8f9d59d4765212f0e28f78e6c1783d18eae"
license "GPL-3.0-or-later"
bottle do
sha256 arm64_monterey: "fd00728bb05e73562b642a2a36bb24562f97c867710642e08bcc522fbd06ea5e"
sha256 arm64_big_sur: "03413be24801e4b02bf0b72e4900463908267c62849277bcdcd006409ca73dc4"
sha256 monterey: "df1d41d43c5d86024ba7d83b13272f324f42ecc555a4cd9670c13e95b027d1ba"
sha256 big_sur: "2ed5d0fad6b1e2b7f8ac25d274aa6e8a5e28924f6b20e08da8fdbc796f2481fd"
sha256 catalina: "aa728a5d7ac88a8c22cb9f022e292c0f121cbe2085f69128df9e4e2e5e862bf3"
sha256 x86_64_linux: "37dc86c031ab20df01037021b776f53af623ceab915e06a7bb8693ad3853d283"
end
depends_on "gobject-introspection" => :build
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => :build
depends_on "vala" => :build
depends_on "glib"
depends_on "gtk+3"
def install
mkdir "build" do
system "meson", *std_meson_args, "-Dwith_vapi=true", ".."
system "ninja", "-v"
system "ninja", "install", "-v"
end
end
test do
(testpath/"test.c").write <<~EOS
#include <dazzle.h>
int main(int argc, char *argv[]) {
g_assert_false(dzl_file_manager_show(NULL, NULL));
return 0;
}
EOS
atk = Formula["atk"]
cairo = Formula["cairo"]
fontconfig = Formula["fontconfig"]
freetype = Formula["freetype"]
gdk_pixbuf = Formula["gdk-pixbuf"]
gettext = Formula["gettext"]
glib = Formula["glib"]
graphite2 = Formula["graphite2"]
gtkx3 = Formula["gtk+3"]
harfbuzz = Formula["harfbuzz"]
libepoxy = Formula["libepoxy"]
libpng = Formula["libpng"]
pango = Formula["pango"]
pcre = Formula["pcre"]
pixman = Formula["pixman"]
flags = (ENV.cflags || "").split + (ENV.cppflags || "").split + (ENV.ldflags || "").split
flags += %W[
-I#{atk.opt_include}/atk-1.0
-I#{cairo.opt_include}/cairo
-I#{fontconfig.opt_include}
-I#{freetype.opt_include}/freetype2
-I#{gdk_pixbuf.opt_include}/gdk-pixbuf-2.0
-I#{gettext.opt_include}
-I#{glib.opt_include}/gio-unix-2.0/
-I#{glib.opt_include}/glib-2.0
-I#{glib.opt_lib}/glib-2.0/include
-I#{graphite2.opt_include}
-I#{gtkx3.opt_include}/gtk-3.0
-I#{harfbuzz.opt_include}/harfbuzz
-I#{include}/libdazzle-1.0
-I#{libepoxy.opt_include}
-I#{libpng.opt_include}/libpng16
-I#{pango.opt_include}/pango-1.0
-I#{pcre.opt_include}
-I#{pixman.opt_include}/pixman-1
-D_REENTRANT
-L#{atk.opt_lib}
-L#{cairo.opt_lib}
-L#{gdk_pixbuf.opt_lib}
-L#{gettext.opt_lib}
-L#{glib.opt_lib}
-L#{gtkx3.opt_lib}
-L#{lib}
-L#{pango.opt_lib}
-latk-1.0
-lcairo
-lcairo-gobject
-ldazzle-1.0
-lgdk-3
-lgdk_pixbuf-2.0
-lgio-2.0
-lglib-2.0
-lgobject-2.0
-lgtk-3
-lpango-1.0
-lpangocairo-1.0
]
if OS.mac?
flags << "-lintl"
flags << "-Wl,-framework"
flags << "-Wl,CoreFoundation"
end
system ENV.cc, "test.c", "-o", "test", *flags
system "./test"
end
end