blob: 151ff83c64467e374b51677be62b70a7637fe215 (
plain)
1 # Description: Library with common API for various GNOME modules
2 # URL: https://gitlab.gnome.org/GNOME/gnome-desktop
3 # Maintainer: Tim Biermann, tbier at posteo dot de
4 # Depends on: gsettings-desktop-schemas gtk4 iso-codes libseccomp xorg-libxcomposite xorg-libxcursor xorg-libxinerama xkeyboard-config
5
6 name=gnome-desktop
7 version=43
8 release=1
9 source=(https://download.gnome.org/sources/gnome-desktop/${version::2}/$name-$version.tar.xz)
10
11 build() {
12 meson setup $name-$version build \
13 --prefix=/usr \
14 --libexecdir=/usr/lib/$name \
15 --buildtype=plain \
16 --wrap-mode nodownload \
17 --auto-features disabled \
18 -D b_lto=true \
19 -D b_pie=true \
20 -D udev=enabled \
21 -D gtk_doc=false \
22 -D desktop_docs=false \
23 -D systemd=disabled
24 meson compile -C build
25 DESTDIR=$PKG meson install -C build
26
27 rm -fr $PKG/usr/share/locale
28 }
|