blob: 0e45f1b6e854645df99f82105a2101c7ea506844 (
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
107
108
109
110
111
112
113
|
# Maintainer: Pellegrino Prevete (tallero) <pellegrinoprevete@gmail.com>
_pkgname=gnome-settings-daemon
pkgname="${_pkgname}-git"
pkgver=47.2
pkgrel=1
pkgdesc="GNOME Settings Daemon"
_gnome_git="https://gitlab.gnome.org/GNOME"
url="${_gnome_git}/${_pkgname}.git"
arch=(
x86_64
i686
pentium4
aarch64
armv7h
)
license=(LGPL-2.1-only)
depends=(
alsa-lib
bash
cairo
dconf
fontconfig
gcc-libs
gcr-4
geoclue
geocode-glib-2
glib2
glibc
gnome-desktop
gsettings-desktop-schemas
gtk3
libcanberra-pulse
libcolord
libcups
libgudev
libgweather-4
libmm-glib
libnm
libnotify
libp11-kit
libpulse
librsvg
libwacom
libx11
libxext
libxfixes
libxi
nss
pango
polkit
pulse-native-provider
systemd
systemd-libs
upower
wayland
xorg-xrdb
)
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:
|