2019-09-02 22:24:44 +02:00
|
|
|
# Description: i3status replacement written in rust
|
|
|
|
# URL: https://github.com/greshake/i3status-rust
|
|
|
|
# Maintainer: Tim Biermann, tbier at posteo dot de
|
2022-02-05 10:30:36 +01:00
|
|
|
# Depends on: dbus lm_sensors rust
|
|
|
|
# Optional: alsa-utils bluez curl font-awesome-compat font-powerline kdeconnect notmuch pulseaudio upower
|
2019-09-02 22:24:44 +02:00
|
|
|
|
|
|
|
name=i3status-rust
|
2022-06-19 21:37:25 +02:00
|
|
|
version=0.21.11
|
2021-05-13 12:43:00 +00:00
|
|
|
release=1
|
2021-05-09 13:36:40 +00:00
|
|
|
source=(https://github.com/greshake/i3status-rust/archive/v$version/$name-$version.tar.gz)
|
2019-09-02 22:24:44 +02:00
|
|
|
|
|
|
|
build() {
|
2021-02-14 15:11:48 +00:00
|
|
|
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
|
|
|
|
mkdir "$PKGMK_SOURCE_DIR/rust" || true
|
|
|
|
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
|
2020-10-31 14:50:52 +00:00
|
|
|
|
|
|
|
# configure optional dependencies
|
2021-11-11 15:23:26 +01:00
|
|
|
prt-get isinst notmuch && PKGMK_I3STATUS_RUST+=' notmuch'
|
|
|
|
prt-get isinst pulseaudio && PKGMK_I3STATUS_RUST+=' libpulse-binding'
|
2020-10-31 14:50:52 +00:00
|
|
|
|
|
|
|
[[ -n $PKGMK_I3STATUS_RUST ]] \
|
2021-02-14 15:11:48 +00:00
|
|
|
&& cargo build --manifest-path $name-$version/Cargo.toml --release --features "$PKGMK_I3STATUS_RUST" \
|
|
|
|
|| cargo build --manifest-path $name-$version/Cargo.toml --release --no-default-features
|
|
|
|
|
|
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/i3status-rs
|
2021-05-09 13:23:13 +00:00
|
|
|
|
2022-06-19 21:37:25 +02:00
|
|
|
install -Dm644 $name-$version/man/i3status-rs.1 -t $PKG/usr/share/man/man1
|
2021-05-09 13:23:13 +00:00
|
|
|
|
|
|
|
for icon_set in $name-$version/files/icons/*.toml; do
|
2021-05-09 13:36:40 +00:00
|
|
|
install -Dm644 $icon_set -t $PKG/usr/share/$name/icons
|
2021-05-09 13:23:13 +00:00
|
|
|
done
|
|
|
|
|
|
|
|
for theme in $name-$version/files/themes/*.toml; do
|
2021-05-09 13:36:40 +00:00
|
|
|
install -Dm644 $theme -t $PKG/usr/share/$name/themes
|
2021-05-09 13:23:13 +00:00
|
|
|
done
|
2019-09-02 22:24:44 +02:00
|
|
|
}
|