blob: 1c8d462208bb2869aef8d4c02702e077fb9ee10d (
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
|
# Maintainer: Mark Wagie <mark dot wagie at proton dot me>
pkgname=cosmic-settings-daemon-git
pkgver=1.0.0.alpha.4.r4.g9d9ad8e
pkgrel=1
pkgdesc="Cosmic settings daemon"
arch=('x86_64' 'aarch64')
url="https://github.com/pop-os/cosmic-settings-daemon"
license=('GPL-3.0-or-later')
depends=(
'acpid'
'adw-gtk-theme'
'alsa-utils'
'geoclue'
'libinput'
'playerctl'
'pop-sound-theme-git'
'systemd-libs'
)
makedepends=(
'cargo'
'git'
'mold'
)
optdepends=(
'pulseaudio-alsa: Media keys support'
)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=('git+https://github.com/pop-os/cosmic-settings-daemon.git'
'lto.patch')
sha256sums=('SKIP'
'0d9c1cdf9fcb68116e2d16c5d6ea575d64a11386d6fb3a39e6e07fb5b3ee7798')
pkgver() {
cd "${pkgname%-git}"
git describe --long --tags --abbrev=7 | sed 's/^epoch-//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
prepare() {
cd "${pkgname%-git}"
# Use thin LTO
patch -Np1 -i ../lto.patch
export RUSTUP_TOOLCHAIN=stable
cargo fetch --locked --target "$(rustc -vV | sed -n 's/host: //p')"
# Use wheel instead of sudo group
# https://github.com/pop-os/cosmic-settings-daemon/issues/42
sed -i 's|sudo|wheel|g' "data/polkit-1/rules.d/${pkgname%-git}.rules"
}
build() {
cd "${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
export GEOCLUE_AGENT="/usr/lib/geoclue-2.0/demos/agent"
# use mold instead of lld to speed up build
RUSTFLAGS+=" -C link-arg=-fuse-ld=mold"
# use nice to build with lower priority
ARGS+=" --frozen" nice make geoclue_agent='/usr/lib/geoclue-2.0/demos/agent'
}
package() {
cd "${pkgname%-git}"
make DESTDIR="$pkgdir" install
}
|