PKGBUILDs/extra/mutter/PKGBUILD

130 lines
2.5 KiB
Bash
Raw Normal View History

2021-12-12 23:12:39 +00:00
# Maintainer: Jan Alexander Steffens (heftig) <heftig@archlinux.org>
# Contributor: Ionut Biru <ibiru@archlinux.org>
# Contributor: Michael Kanis <mkanis_at_gmx_dot_de>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - move xorg-server-xvfb from checkdepends to makedepends
2022-04-07 00:49:21 +00:00
pkgbase=mutter
pkgname=(mutter mutter-docs)
2023-04-29 02:26:23 +00:00
pkgver=43.5
2023-03-29 17:47:02 +00:00
pkgrel=1
2023-02-01 20:10:07 +00:00
pkgdesc="Window manager and compositor for GNOME"
2021-12-12 23:12:39 +00:00
url="https://gitlab.gnome.org/GNOME/mutter"
arch=(x86_64)
license=(GPL)
2023-02-01 20:10:07 +00:00
depends=(
colord
dconf
gnome-desktop
gnome-settings-daemon
graphene
gsettings-desktop-schemas
lcms2
libcanberra
libgudev
libinput
libsm
libsysprof-capture
libxkbcommon-x11
libxkbfile
pipewire
startup-notification
xorg-xwayland
)
makedepends=(
egl-wayland
gi-docgen
git
gobject-introspection
meson
sysprof
wayland-protocols
xorg-server
xorg-server-xvfb
)
checkdepends=(
python-dbusmock
wireplumber
zenity
)
2023-04-29 02:26:23 +00:00
_commit=eedb556bb42a3de1423ec77ca11b7f014462c9e7 # tags/43.5^0
source=("git+https://gitlab.gnome.org/GNOME/mutter.git#commit=$_commit")
2023-02-01 20:10:07 +00:00
b2sums=('SKIP')
2021-12-12 23:12:39 +00:00
pkgver() {
2022-01-12 00:20:50 +00:00
cd mutter
2021-12-12 23:12:39 +00:00
git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
}
prepare() {
2022-01-12 00:20:50 +00:00
cd mutter
2023-02-16 13:38:23 +00:00
2023-03-29 17:47:02 +00:00
# Fix crash on resume from suspend
# https://gitlab.gnome.org/GNOME/mutter/-/issues/2570
git cherry-pick -n c1ab3f39d73a041b488acf7296456840fa83c0da
2021-12-12 23:12:39 +00:00
}
build() {
2023-04-29 02:26:23 +00:00
local meson_options=(
-D docs=true
-D egl_device=true
-D installed_tests=false
-D wayland_eglstream=true
)
2021-12-12 23:12:39 +00:00
CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
LDFLAGS+=" -Wl,-Bsymbolic-functions"
2022-01-12 00:20:50 +00:00
2023-04-29 02:26:23 +00:00
arch-meson mutter build "${meson_options[@]}"
2021-12-12 23:12:39 +00:00
meson compile -C build
}
_check() (
2022-09-17 21:49:12 +00:00
export XDG_RUNTIME_DIR="$PWD/rdir" GSETTINGS_SCHEMA_DIR="$PWD/build/data"
mkdir -p -m 700 "$XDG_RUNTIME_DIR"
glib-compile-schemas "$GSETTINGS_SCHEMA_DIR"
2021-12-12 23:12:39 +00:00
2022-11-01 00:28:32 +00:00
pipewire &
2021-12-12 23:12:39 +00:00
_p1=$!
2022-11-01 00:28:32 +00:00
wireplumber &
2021-12-12 23:12:39 +00:00
_p2=$!
trap "kill $_p1 $_p2; wait" EXIT
2022-04-07 00:49:21 +00:00
meson test -C build --print-errorlogs -t 3
2021-12-12 23:12:39 +00:00
)
check() {
2022-01-07 19:15:02 +00:00
dbus-run-session xvfb-run -s '-nolisten local +iglx -noreset' \
2021-12-12 23:12:39 +00:00
bash -c "$(declare -f _check); _check"
}
2022-04-07 00:49:21 +00:00
_pick() {
local p="$1" f d; shift
for f; do
d="$srcdir/$p/${f#$pkgdir/}"
mkdir -p "$(dirname "$d")"
mv "$f" "$d"
rmdir -p --ignore-fail-on-non-empty "$(dirname "$f")"
done
}
package_mutter() {
2022-11-01 00:28:32 +00:00
provides=(libmutter-11.so)
2022-04-07 00:49:21 +00:00
2021-12-12 23:12:39 +00:00
meson install -C build --destdir "$pkgdir"
2022-04-07 00:49:21 +00:00
_pick docs "$pkgdir"/usr/share/mutter-*/doc
}
package_mutter-docs() {
pkgdesc+=" (documentation)"
depends=()
mv docs/* "$pkgdir"
2021-12-12 23:12:39 +00:00
}
2022-01-12 00:20:50 +00:00
2022-09-17 21:49:12 +00:00
# vim:set sw=2 sts=-1 et: