homebrew-core/Formula/glib.rb

123 lines
4.5 KiB
Ruby

class Glib < Formula
include Language::Python::Shebang
desc "Core application library for C"
homepage "https://developer.gnome.org/glib/"
url "https://download.gnome.org/sources/glib/2.72/glib-2.72.3.tar.xz"
sha256 "4a39a2f624b8512d500d5840173eda7fa85f51c109052eae806acece85d345f0"
license "LGPL-2.1-or-later"
revision 1
bottle do
rebuild 1
sha256 arm64_monterey: "4b041b944a868e12c7e57ce19f2564bcbf9e8e5932c8aac76798946d8f196757"
sha256 arm64_big_sur: "663d6af72612b190ef76977db1dc8e822be21f1555a36a854a83e854afdb5025"
sha256 monterey: "4d4b142bd157136a20de6c6b84e0ee4294fb0fd0c432cf4d08259afea69ee4c6"
sha256 big_sur: "f5b96cbf2a87be517ace99589a62984ddb22e22ed6fefa0108a459d746de45ef"
sha256 catalina: "73889c0e480eac924e42ac14a49a1608f3db1f829fd3870ed899ecbac8d6acea"
sha256 x86_64_linux: "ab7f5656408ca220edb9888a2d6d02eb51699c8cb7c8d95591f3f2669b79d365"
end
depends_on "meson" => :build
depends_on "ninja" => :build
depends_on "pkg-config" => :build
depends_on "gettext"
depends_on "pcre"
uses_from_macos "libffi", since: :catalina
uses_from_macos "python", since: :catalina
on_linux do
depends_on "util-linux"
end
# These used to live in the now defunct `glib-utils`.
link_overwrite "bin/gdbus-codegen", "bin/glib-genmarshal", "bin/glib-mkenums", "bin/gtester-report"
link_overwrite "share/glib-2.0/codegen", "share/glib-2.0/gdb"
# Sync this with `glib-utils.rb`
# replace several hardcoded paths with homebrew counterparts
patch do
url "https://raw.githubusercontent.com/Homebrew/formula-patches/43467fd8dfc0e8954892ecc08fab131242dca025/glib/hardcoded-paths.diff"
sha256 "d81c9e8296ec5b53b4ead6917f174b06026eeb0c671dfffc4965b2271fb6a82c"
end
def install
inreplace %w[gio/xdgmime/xdgmime.c glib/gutils.c], "@@HOMEBREW_PREFIX@@", HOMEBREW_PREFIX
# Disable dtrace; see https://trac.macports.org/ticket/30413
# and https://gitlab.gnome.org/GNOME/glib/-/issues/653
args = %W[
--default-library=both
--localstatedir=#{var}
-Diconv=auto
-Dgio_module_dir=#{HOMEBREW_PREFIX}/lib/gio/modules
-Dbsymbolic_functions=false
-Ddtrace=false
]
system "meson", "setup", "build", *args, *std_meson_args
system "meson", "compile", "-C", "build", "--verbose"
system "meson", "install", "-C", "build"
# ensure giomoduledir contains prefix, as this pkgconfig variable will be
# used by glib-networking and glib-openssl to determine where to install
# their modules
inreplace lib/"pkgconfig/gio-2.0.pc",
"giomoduledir=#{HOMEBREW_PREFIX}/lib/gio/modules",
"giomoduledir=${libdir}/gio/modules"
if OS.mac?
# `pkg-config --libs glib-2.0` includes -lintl, and gettext itself does not
# have a pkgconfig file, so we add gettext lib and include paths here.
gettext = Formula["gettext"].opt_prefix
inreplace lib/"pkgconfig/glib-2.0.pc" do |s|
s.gsub! "Libs: -L${libdir} -lglib-2.0 -lintl",
"Libs: -L${libdir} -lglib-2.0 -L#{gettext}/lib -lintl"
s.gsub! "Cflags: -I${includedir}/glib-2.0 -I${libdir}/glib-2.0/include",
"Cflags: -I${includedir}/glib-2.0 -I${libdir}/glib-2.0/include -I#{gettext}/include"
end
end
if MacOS.version < :catalina
# `pkg-config --print-requires-private gobject-2.0` includes libffi,
# but that package is keg-only so it needs to look for the pkgconfig file
# in libffi's opt path.
libffi = Formula["libffi"].opt_prefix
inreplace lib/"pkgconfig/gobject-2.0.pc" do |s|
s.gsub! "Requires.private: libffi",
"Requires.private: #{libffi}/lib/pkgconfig/libffi.pc"
end
end
rm "gio/completion/.gitignore"
bash_completion.install (buildpath/"gio/completion").children
rewrite_shebang detected_python_shebang(use_python_from_path: true), *bin.children
end
def post_install
(HOMEBREW_PREFIX/"lib/gio/modules").mkpath
end
test do
(testpath/"test.c").write <<~EOS
#include <string.h>
#include <glib.h>
int main(void)
{
gchar *result_1, *result_2;
char *str = "string";
result_1 = g_convert(str, strlen(str), "ASCII", "UTF-8", NULL, NULL, NULL);
result_2 = g_convert(result_1, strlen(result_1), "UTF-8", "ASCII", NULL, NULL, NULL);
return (strcmp(str, result_2) == 0) ? 0 : 1;
}
EOS
system ENV.cc, "-o", "test", "test.c", "-I#{include}/glib-2.0",
"-I#{lib}/glib-2.0/include", "-L#{lib}", "-lglib-2.0"
system "./test"
end
end