blob: 7bb984aee06829ecd1977f8f6daf5a313c99712f (
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
|
# Maintainer: Pellegrino Prevete (tallero) <pellegrinoprevete@gmail.com>
_pkgname=gnome-settings-daemon
pkgname="${_pkgname}-git"
pkgver=49.alpha.1
pkgrel=2
pkgdesc="GNOME Settings Daemon"
_gnome_git="https://gitlab.gnome.org/GNOME"
url="${_gnome_git}/${_pkgname}.git"
arch=(
x86_64
i686
pentium4
aarch64
armv7h
)
license=(
GPL-2.0-or-later
LGPL-2.0-or-later
)
depends=(
alsa-lib
bash
dconf
fontconfig
gcc-libs
gcr-4
geoclue
geocode-glib-2
glib2
glibc
gnome-desktop-4
gsettings-desktop-schemas
gtk4
libcanberra-pulse
libcolord
libcups
libgudev
libgweather-4
libmm-glib
libnm
libnotify
libp11-kit
libpulse
libx11
libxfixes
polkit
pulse-native-provider
systemd-libs
upower
)
makedepends=(
docbook-xsl
git
glib2-devel
libxslt
meson
python
usbguard
)
checkdepends=(
python-dbusmock
python-gobject
)
optdepends=('usbguard: USB protection support')
groups=(gnome gnome-git)
backup=(etc/xdg/Xwayland-session.d/00-xrdb)
provides=("${_pkgname}")
conflicts=("${_pkgname}")
source=(
"git+${url}"
"git+${_gnome_git}/libgnome-volume-control.git"
)
sha256sums=(
'SKIP'
'SKIP'
)
pkgver() {
cd "${_pkgname}"
git describe --tags | \
sed 's/^GNOME_SETTINGS_DAEMON_//;s/_/./g;s/-/+/g'
}
prepare() {
cd "${_pkgname}"
git submodule init
git submodule set-url subprojects/gvc "$srcdir/libgnome-volume-control"
git -c protocol.file.allow=always 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:
|