2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-07-04 23:12:28 +00:00
repo/extra/gtk+3/build

59 lines
1.4 KiB
Plaintext
Raw Normal View History

2019-07-27 15:18:06 +00:00
#!/bin/sh -e
2021-07-07 15:42:01 +00:00
patch -p1 < no-fribidi.patch
2021-07-09 10:38:22 +00:00
# GTK+3 on Wayland requires gsettings-desktop-schemas
2021-07-30 10:14:42 +00:00
# for gsettings to work correctly. Under X11 it made
# use of xsettings but this is no longer the case.
2021-07-09 10:38:22 +00:00
(
cd schemas
meson \
--prefix=/usr \
-Dintrospection=false \
. output
ninja -C output
ninja -C output install
)
2021-07-07 15:42:01 +00:00
# Remove configure check for atk-bridge and fribidi.
sed -e 's/\(ATK_PACKAGES="atk\) atk-bridge-2.0"/\1"/' \
-e 's/fribidi >= 0\.19\.7//g' \
configure > _
2021-07-03 21:44:07 +00:00
mv -f _ configure
2019-11-18 01:17:44 +00:00
2021-07-03 21:44:07 +00:00
# Remove atk-bridge code.
sed '/<atk-bridge.h>/d;/atk_bridge_adaptor_init/d' \
gtk/a11y/gtkaccessibility.c > _
mv -f _ gtk/a11y/gtkaccessibility.c
2019-07-27 16:35:15 +00:00
2020-01-12 08:20:48 +00:00
# Don't build GTK examples/demos/testsuite.
2021-07-03 21:44:07 +00:00
sed 's/demos tests testsuite examples//;s/docs \(m4macros\)/\1/' Makefile.in > _
mv -f _ Makefile.in
2020-01-12 08:20:48 +00:00
2021-07-28 09:39:29 +00:00
sh ./configure \
2019-07-27 15:18:06 +00:00
--prefix=/usr \
2019-07-27 15:24:23 +00:00
--sysconfdir=/etc \
--localstatedir=/var \
2021-07-08 07:40:03 +00:00
--enable-wayland-backend \
--disable-x11-backend \
2019-07-27 16:17:49 +00:00
--disable-schemas-compile \
2019-07-27 15:18:06 +00:00
--disable-cups \
--disable-papi \
--disable-cloudprint \
2020-01-12 08:20:48 +00:00
--disable-glibtest \
2020-05-12 05:39:46 +00:00
--disable-nls \
2020-02-07 23:40:04 +00:00
--disable-installed-tests \
2019-07-27 15:18:06 +00:00
--enable-introspection=no \
--enable-colord=no \
--enable-gtk-doc-html=no
make
2021-07-18 02:26:28 +00:00
make install
2020-05-03 17:59:23 +00:00
# We don't compile with librsvg which leads to this
# utility solely causing compiler errors for some
# packages. It has no use at all.
2020-05-17 07:39:05 +00:00
rm -f "$1/usr/bin/gtk-encode-symbolic-svg"