lilyp pushed a commit to branch gnome-team in repository guix. commit b758d640f9091d90e1b1cedad6d221a8541931e1 Author: Liliana Marie Prikler <liliana.prik...@gmail.com> AuthorDate: Wed Jan 8 12:46:01 2025 +0100
gnu: harfbuzz: Build with meson. * gnu/packages/gtk.scm (harfbuzz)[build-system]: Use meson-build-system. [#:configure-flags]: Replace “--with-graphite2” with “-Dgraphite2=enabled”. Remove other flags. --- gnu/packages/gtk.scm | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index 346520db1f..35baf938fe 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -292,7 +292,7 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.") (sha256 (base32 "0izq2lpqxrf1l755nxrxkkiarywkx5j43asznankxplbxgm0358h")))) - (build-system gnu-build-system) + (build-system meson-build-system) (outputs '("out" "bin")) ;160K, only hb-view depend on cairo (inputs @@ -310,9 +310,7 @@ output. Experimental backends include OpenGL, BeOS, OS/2, and DirectFB.") which))) (arguments (list #:configure-flags - #~(list "--with-graphite2" - "--with-gobject" - (string-append "--bindir=" #$output:bin "/bin")))) + #~(list "-Dgraphite2=enabled"))) (synopsis "OpenType text shaping engine") (description "HarfBuzz is an OpenType text shaping engine.")