contrib/i3status-rust/Pkgfile

41 lines
1.7 KiB
Plaintext
Raw Normal View History

# Description: i3status replacement written in rust
# URL: https://github.com/greshake/i3status-rust
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: dbus lm_sensors rust
# Optional: alsa-utils bluez curl font-awesome-compat font-powerline kdeconnect notmuch pulseaudio upower
name=i3status-rust
2023-08-01 07:10:51 +02:00
version=0.31.9
2021-05-13 14:43:00 +02:00
release=1
2023-02-23 18:07:07 +01:00
source=(https://github.com/greshake/i3status-rust/archive/v$version/$name-$version.tar.gz)
build() {
2021-02-14 16:11:48 +01: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 15:50:52 +01:00
# configure optional dependencies
2021-11-11 15:23:26 +01:00
prt-get isinst pulseaudio && PKGMK_I3STATUS_RUST+=' libpulse-binding'
2020-10-31 15:50:52 +01:00
[[ -n $PKGMK_I3STATUS_RUST ]] \
2023-02-23 18:07:07 +01: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
2021-02-14 16:11:48 +01:00
2023-02-23 18:07:07 +01:00
install -Dt $PKG/usr/bin $name-$version/target/release/i3status-rs
2023-03-17 18:35:19 +01:00
## depends on xtask and pandoc
## https://github.com/greshake/i3status-rust/blob/674069255d0dd83e6cd994ca577c3688d2305a12/NEWS.md?plain=1#L22
## https://github.com/greshake/i3status-rust/674069255d0dd83e6cd994ca577c3688d2305a12/master/doc/manual_install.md?plain=1#L32
## https://crates.io/crates/xtask
#cargo xtask --manifest-path $name-$version/Cargo.toml generate-manpage
#install -Dm644 $name-$version/man/i3status-rs.1 -t $PKG/usr/share/man/man1
2023-02-23 18:07:07 +01:00
for icon_set in $name-$version/files/icons/*.toml; do
install -Dm644 $icon_set -t $PKG/usr/share/$name/icons
done
2023-02-23 18:07:07 +01:00
for theme in $name-$version/files/themes/*.toml; do
install -Dm644 $theme -t $PKG/usr/share/$name/themes
done
}