contrib/i3status-rust/Pkgfile

31 lines
1.1 KiB
Plaintext

# Description: i3status replacement written in rust
# URL: https://github.com/greshake/i3status-rust
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: dbus rust
# Optional: notmuch pulseaudio
name=i3status-rust
version=0.14.7
release=1
source=(https://github.com/greshake/i3status-rust/archive/v$version/$name-$version-01.tar.gz)
build() {
prt-get isinst sccache && export RUSTC_WRAPPER=/usr/bin/sccache
mkdir "$PKGMK_SOURCE_DIR/rust" || true
export CARGO_HOME="$PKGMK_SOURCE_DIR/rust"
# configure optional dependencies
[[ -e /usr/lib/libnotmuch.so ]] && PKGMK_I3STATUS_RUST+=' notmuch'
[[ -e /usr/lib/pkgconfig/libpulse.pc ]] && PKGMK_I3STATUS_RUST+=' libpulse-binding'
cargo update --manifest-path $name-$version/Cargo.toml
cargo fetch --manifest-path $name-$version/Cargo.toml --locked
[[ -n $PKGMK_I3STATUS_RUST ]] \
&& 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
}