summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 36c131bb54505a75b1708732a597a5716364b31f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
# Maintainer:  Aleksana QwQ <me@aleksana.moe>

pkgname=mutter-ubuntu
pkgver=42.3_0.1
pkgrel=1
pkgdesc="A window manager for GNOME, with ubuntu patches"
url="https://salsa.debian.org/gnome-team/mutter"
arch=(x86_64)
license=(GPL)
depends=(dconf gobject-introspection-runtime gsettings-desktop-schemas
         libcanberra startup-notification zenity libsm gnome-desktop 
         libxkbcommon-x11 gnome-settings-daemon libgudev libinput pipewire
         xorg-xwayland graphene libxkbfile libsysprof-capture)
makedepends=(gobject-introspection git egl-wayland meson xorg-server
             wayland-protocols sysprof gi-docgen)
checkdepends=(xorg-server-xvfb wireplumber python-dbusmock)
provides=(libmutter-10.so mutter)
conflicts=(mutter)

_tag=ubuntu/42.3-0ubuntu1

source=("$pkgname::git+$url.git#tag=$_tag")
sha256sums=('SKIP')

pkgver(){
  echo $_tag | sed 's/ubuntu\///g;s/ubuntu/./g;s/-/_/g'
}
            
prepare() {
  cd $pkgname  
  find -name "*.orig" -exec rm {} \;
  
  patchdir="$srcdir/$pkgname/debian/patches"
  for patchname in $(cat $patchdir/series);do
    patch -p1 < $patchdir/$patchname
  done
}

build() {
  CFLAGS="${CFLAGS/-O2/-O3} -fno-semantic-interposition"
  LDFLAGS+=" -Wl,-Bsymbolic-functions"

  arch-meson $pkgname build \
    -D egl_device=true \
    -D wayland_eglstream=true \
    -D installed_tests=false
  meson compile -C build
}

_check() (
  mkdir -p -m 700 "${XDG_RUNTIME_DIR:=$PWD/runtime-dir}"
  glib-compile-schemas "${GSETTINGS_SCHEMA_DIR:=$PWD/build/data}"
  export XDG_RUNTIME_DIR GSETTINGS_SCHEMA_DIR

  pipewire &
  _p1=$!

  wireplumber &
  _p2=$!

  trap "kill $_p1 $_p2; wait" EXIT

  meson test -C build --print-errorlogs -t 3
)

check() {
  dbus-run-session xvfb-run -s '-nolisten local +iglx -noreset' \
    bash -c "$(declare -f _check); _check"
}

package() {
  meson install -C build --destdir "$pkgdir"
}