Date: Tuesday, October 25, 2022 @ 16:30:17
Author: heftig
Revision: 458923
archrelease: copy trunk to gnome-unstable-x86_64
Added:
gnome-settings-daemon/repos/gnome-unstable-x86_64/
gnome-settings-daemon/repos/gnome-unstable-x86_64/PKGBUILD
(from rev 458922, gnome-settings-daemon/trunk/PKGBUILD)
----------+
PKGBUILD | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++
1 file changed, 52 insertions(+)
Copied: gnome-settings-daemon/repos/gnome-unstable-x86_64/PKGBUILD (from rev
458922, gnome-settings-daemon/trunk/PKGBUILD)
===================================================================
--- gnome-unstable-x86_64/PKGBUILD (rev 0)
+++ gnome-unstable-x86_64/PKGBUILD 2022-10-25 16:30:17 UTC (rev 458923)
@@ -0,0 +1,52 @@
+# Maintainer: Jan Alexander Steffens (heftig) <[email protected]>
+
+pkgname=gnome-settings-daemon
+pkgver=43.0
+pkgrel=1
+pkgdesc="GNOME Settings Daemon"
+url="https://gitlab.gnome.org/GNOME/gnome-settings-daemon"
+arch=(x86_64)
+license=(GPL)
+depends=(dconf gnome-desktop gsettings-desktop-schemas libcanberra-pulse
+ libnotify systemd libwacom pulseaudio pulseaudio-alsa upower librsvg
+ libgweather-4 geocode-glib-2 geoclue nss libgudev gtk3 libnm gcr-4)
+makedepends=(libxslt docbook-xsl python git meson usbguard)
+checkdepends=(python-gobject python-dbusmock)
+optdepends=('usbguard: USB protection support')
+groups=(gnome)
+backup=(etc/xdg/Xwayland-session.d/00-xrdb)
+options=(debug)
+_commit=7bde651053bdf18fe66cbd4ce697cb97a6ea556b # tags/43.0^0
+source=("git+https://gitlab.gnome.org/GNOME/gnome-settings-daemon.git#commit=$_commit"
+ "git+https://gitlab.gnome.org/GNOME/libgnome-volume-control.git")
+sha256sums=('SKIP'
+ 'SKIP')
+
+pkgver() {
+ cd $pkgname
+ git describe --tags | sed 's/[^-]*-g/r&/;s/-/+/g'
+}
+
+prepare() {
+ cd $pkgname
+
+ git config --global protocol.file.allow always
+ git submodule init
+ git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
+ git submodule update
+}
+
+build() {
+ arch-meson $pkgname build
+ meson compile -C build
+}
+
+check() {
+ meson test -C build --print-errorlogs
+}
+
+package() {
+ meson install -C build --destdir "$pkgdir"
+}
+
+# vim:set sw=2 sts=-1 et: