blob: 76eea8ab653ccb28a3c0c466ee9d63ac82a5224a (
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
|
# Maintainer: Jason Nader <jason.nader@protonmail.com>
# Contributor: Bryan Malyn <bim9262@gmail.com>
pkgname=i3status-rust-git
pkgver=0.32.3.r3445.g88cfdbe7
pkgrel=1
pkgdesc='Very resourcefriendly and feature-rich replacement for i3status to use with bar programs (like i3bar and swaybar), written in pure Rust'
arch=('x86_64')
url='https://github.com/greshake/i3status-rust'
license=('GPL-3.0-only')
depends=('libpulse' 'lm_sensors' 'libpipewire')
makedepends=('git' 'rust' 'pandoc' 'clang')
optdepends=('alsa-utils: for the volume block'
'bluez: for the bluetooth block'
'fakeroot: for the pacman block to show pending updates'
'kdeconnect: for the kdeconnect block'
'pipewire: for the privacy block'
'powerline-fonts: for all themes using the powerline arrow char'
'pulseaudio: for the volume block'
'speedtest-cli: for the speedtest block'
'ttf-font-awesome: for the awesome icons'
'upower: for the battery block')
provides=("${pkgname%-*}")
conflicts=("${pkgname%-*}")
install="${pkgname%-*}.install"
source=("${pkgname%-*}::git+$url")
sha1sums=('SKIP')
pkgver() {
cd "${pkgname%-*}"
echo $(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).r$(git rev-list --count HEAD).g$(git describe --always)
}
prepare() {
cd "${pkgname%-*}"
cargo fetch --locked --target "$CARCH-unknown-linux-gnu"
}
build() {
cd "${pkgname%-*}"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --release --features 'pulseaudio maildir pipewire'
cargo xtask generate-manpage
}
package() {
cd "${pkgname%-*}"
install -Dm755 -t "${pkgdir}"/usr/bin target/release/i3status-rs
install -Dm644 -t "${pkgdir}"/usr/share/man/man1 man/i3status-rs.1
for icon_set in files/icons/*.toml; do
install -Dm644 -t "${pkgdir}"/usr/share/${pkgname%-*}/icons "${icon_set}"
done
for theme in files/themes/*.toml; do
install -Dm644 -t "${pkgdir}"/usr/share/${pkgname%-*}/themes "${theme}"
done
for example_config in examples/*.toml; do
install -Dm644 -t "${pkgdir}"/usr/share/doc/${pkgname%-*}/examples/ "${example_config}"
done
}
|