gtk+3 3.24.35

* gtk+3 3.24.35
* gtk+3: patch linux build

Closes #116641.

Signed-off-by: Rui Chen <rui@chenrui.dev>
Signed-off-by: BrewTestBot <1589480+BrewTestBot@users.noreply.github.com>
master
Rui Chen 2022-11-24 12:02:14 -05:00 committed by BrewTestBot
parent 8fbd4c5fe8
commit 71775582c3
No known key found for this signature in database
GPG Key ID: 82D7D104050B0F0F
1 changed files with 24 additions and 2 deletions

View File

@ -1,8 +1,8 @@
class Gtkx3 < Formula
desc "Toolkit for creating graphical user interfaces"
homepage "https://gtk.org/"
url "https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.34.tar.xz"
sha256 "dbc69f90ddc821b8d1441f00374dc1da4323a2eafa9078e61edbe5eeefa852ec"
url "https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.35.tar.xz"
sha256 "ec10fe6d712ef0b3c63b5f932639c9d1ae99fce94f500f6f06965629fef60bd1"
license "LGPL-2.0-or-later"
livecheck do
@ -45,6 +45,8 @@ class Gtkx3 < Formula
depends_on "libxkbcommon"
depends_on "wayland-protocols"
depends_on "xorgproto"
patch :DATA
end
def install
@ -146,3 +148,23 @@ class Gtkx3 < Formula
assert_match version.to_s, shell_output("cat #{lib}/pkgconfig/gtk+-3.0.pc").strip
end
end
__END__
diff --git a/gdk/wayland/cursor/meson.build b/gdk/wayland/cursor/meson.build
new file mode 100644
index 0000000000000000000000000000000000000000..02d5f2bed8d926ee26bcf4c4081d18fc9d53fd5b
--- /dev/null
+++ b/gdk/wayland/cursor/meson.build
@@ -0,0 +1,12 @@
+wayland_cursor_sources = files([
+ 'wayland-cursor.c',
+ 'xcursor.c',
+ 'os-compatibility.c'
+])
+
+libwayland_cursor = static_library('wayland+cursor',
+ sources: wayland_cursor_sources,
+ include_directories: [ confinc, ],
+ dependencies: [ glib_dep, wlclientdep, ],
+ c_args: common_cflags,
+)