diff options
Diffstat (limited to 'extra/gtk+3')
-rwxr-xr-x | extra/gtk+3/build | 50 | ||||
-rw-r--r-- | extra/gtk+3/checksums | 3 | ||||
-rw-r--r-- | extra/gtk+3/depends | 17 | ||||
-rw-r--r-- | extra/gtk+3/meta | 3 | ||||
-rw-r--r-- | extra/gtk+3/sources | 2 | ||||
-rw-r--r-- | extra/gtk+3/version | 2 |
6 files changed, 35 insertions, 42 deletions
diff --git a/extra/gtk+3/build b/extra/gtk+3/build index e6b2b6c3..0f603f16 100755 --- a/extra/gtk+3/build +++ b/extra/gtk+3/build @@ -1,40 +1,28 @@ #!/bin/sh -e -sed_i() { - for file; do :; done - sed "$@" > _ - cat _ > "$file"; rm -f _ -} +export DESTDIR="$1" + +# Remove error on array-bounds +clsed '/array-bounds/d' meson.build # Remove 'atk-bridge' dependency which removes the 'dbus' dependency. -sed_i 's/ATK_PACKAGES="atk atk-bridge-2.0"/ATK_PACKAGES="atk"/' \ - configure +clsed '/atk-bridge-2/d' meson.build -sed_i '/<atk-bridge.h>/d;/atk_bridge_adaptor_init/d' \ +clsed '/<atk-bridge.h>/d;/atk_bridge_adaptor_init/d' \ gtk/a11y/gtkaccessibility.c -cpt l wayland >/dev/null 2>&1 && wayland=--enable-wayland-backend +tests=false; [ "$CPT_TEST" = 1 ] && tests=true -./configure \ - --prefix=/usr \ - --sysconfdir=/etc \ - --localstatedir=/var \ - --enable-xkb \ - --enable-xinerama \ - --enable-xrandr \ - --enable-xfixes \ - --enable-xcomposite \ - --enable-xdamage \ - --enable-x11-backend \ - "$wayland" \ - --enable-debug=no \ - --disable-schemas-compile \ - --disable-cups \ - --disable-papi \ - --disable-cloudprint \ - --enable-introspection=no \ - --enable-colord=no \ - --enable-gtk-doc-html=no +cl-meson \ + -Ddefault_library=both \ + -Dxinerama=yes \ + -Dx11_backend=false \ + -Dwayland_backend=true \ + -Dprint_backends=file \ + -Ddemos=false \ + -Dexamples=false \ + -Dtests="$tests" \ + . output -make -make DESTDIR="$1" install +ninja -C output +ninja -C output install diff --git a/extra/gtk+3/checksums b/extra/gtk+3/checksums index 515ef3f4..0bbe20c4 100644 --- a/extra/gtk+3/checksums +++ b/extra/gtk+3/checksums @@ -1 +1,2 @@ -2cc1b2dc5cad15d25b6abd115c55ffd8331e8d4677745dd3ce6db725b4fff1e9 gtk+-3.24.26.tar.xz +%BLAKE3 +949333a7515307f4232babde41026bb08ff6473d9730c55d54962324e1bc135e gtk-3.24.43.tar.gz diff --git a/extra/gtk+3/depends b/extra/gtk+3/depends index 3a47a670..5aa05fb6 100644 --- a/extra/gtk+3/depends +++ b/extra/gtk+3/depends @@ -1,15 +1,16 @@ atk +cairo +fontconfig +freetype-harfbuzz fribidi gdk-pixbuf -libXcomposite -libXcursor -libXdamage -libXext -libXi -libXinerama -libXrandr +glib +gobject-introspection make libepoxy +libxkbcommon +meson make pango -perl make python make shared-mime-info +wayland +wayland-protocols make diff --git a/extra/gtk+3/meta b/extra/gtk+3/meta new file mode 100644 index 00000000..f3b0da87 --- /dev/null +++ b/extra/gtk+3/meta @@ -0,0 +1,3 @@ +description: GTK+ toolkit v3 +license: LGPL-2.1-or-later +maintainer: Cem Keylan <cem@carbslinux.org> diff --git a/extra/gtk+3/sources b/extra/gtk+3/sources index 70bf1898..f6c680ce 100644 --- a/extra/gtk+3/sources +++ b/extra/gtk+3/sources @@ -1 +1 @@ -https://download.gnome.org/sources/gtk+/3.24/gtk+-3.24.26.tar.xz +https://gitlab.gnome.org/GNOME/gtk/-/archive/3.24.43/gtk-3.24.43.tar.gz diff --git a/extra/gtk+3/version b/extra/gtk+3/version index 6e27d3ed..3ac8fbdc 100644 --- a/extra/gtk+3/version +++ b/extra/gtk+3/version @@ -1 +1 @@ -3.24.26 1 +3.24.43 1 |