2020-06-07 14:13:18 +00:00
|
|
|
# Description: Library with common API for various GNOME modules
|
|
|
|
# URL: https://gitlab.gnome.org/GNOME/gnome-desktop
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2020-06-15 16:46:27 +00:00
|
|
|
# Depends on: gsettings-desktop-schemas gtk3 iso-codes libseccomp xorg-libxcomposite xorg-libxcursor xorg-libxinerama xkeyboard-config
|
2020-06-07 14:13:18 +00:00
|
|
|
|
|
|
|
name=gnome-desktop
|
2021-03-23 18:31:29 +00:00
|
|
|
version=3.38.5
|
2020-06-07 14:13:18 +00:00
|
|
|
release=1
|
|
|
|
source=(https://download.gnome.org/sources/gnome-desktop/${version::4}/$name-$version.tar.xz)
|
|
|
|
|
|
|
|
build() {
|
2020-11-03 18:10:44 +00:00
|
|
|
meson setup $name-$version build \
|
2020-06-07 14:13:18 +00:00
|
|
|
--prefix=/usr \
|
|
|
|
--libexecdir=/usr/lib/$name \
|
2020-11-03 18:10:44 +00:00
|
|
|
--buildtype=plain \
|
2021-02-16 16:52:34 +00:00
|
|
|
-D gnome_distributor="CRUX" \
|
|
|
|
-D udev=enabled \
|
|
|
|
-D gtk_doc=false \
|
|
|
|
-D desktop_docs=false \
|
|
|
|
-D systemd=disabled
|
2020-11-03 18:10:44 +00:00
|
|
|
meson compile -C build
|
2020-06-07 14:13:18 +00:00
|
|
|
DESTDIR=$PKG meson install -C build
|
2021-02-16 16:52:34 +00:00
|
|
|
|
2020-06-07 14:13:18 +00:00
|
|
|
rm -fr $PKG/usr/share/locale
|
|
|
|
}
|