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

58 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-08-30 04:01:09 +00:00
patch -p1 < fix-firefox.patch
2021-07-09 10:38:22 +00:00
2022-05-18 19:57:36 +00:00
# Don't enable native language support and don't compile schemas.
sed -e '/compile_schemas/s/true/false/' \
-e '/ENABLE_NLS/s/1/0/' \
-e "/subdir('po/d" \
meson.build > _
mv -f _ meson.build
meson setup \
-Dprefix=/usr \
-Dx11_backend=false \
-Dwayland_backend=true \
-Dprint_backends=file,lpr \
-Dcolord=no \
-Dintrospection=false \
-Ddemos=false \
-Dexamples=false \
-Dtests=false \
-Dlibepoxy:default_library=static \
-Dlibepoxy:egl=yes \
-Dlibepoxy:tests=false \
-Dlibepoxy:glx=no \
-Dlibepoxy:x11=false \
--force-fallback-for=libepoxy \
output
ninja -C output
ninja -C output install
2020-05-03 17:59:23 +00:00
2021-08-09 04:46:48 +00:00
# GTK+3 on Wayland requires gsettings-desktop-schemas for gsettings to work
# correctly. Under X11 it made use of xsettings but this is no longer the case.
(
cd schemas
meson \
--prefix=/usr \
-Dintrospection=false \
. output
ninja -C output
ninja -C output install
)
# 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"
2021-08-09 04:46:48 +00:00
2021-08-09 05:08:11 +00:00
# Remove epoxy references from installed pkg-config files. The build system
# should have done this for us as it is statically linked.
for f in "$1/usr/lib/pkgconfig/"*.pc; do
sed 's/epoxy >= 1.4//' "$f" > _
mv -f _ "$f"
done