# Description: ps written in rust # URL: https://github.com/dalance/procs # Maintainer: Tim Biermann, tbier at posteo dot de # Depends on: rust name=procs version=0.11.9 release=1 source=(https://github.com/dalance/procs/archive/v$version/$name-$version.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" cargo update --manifest-path $name-$version/Cargo.toml cargo build --release --locked --manifest-path $name-$version/Cargo.toml install -Dt $PKG/usr/bin $name-$version/target/release/$name prt-get isinst bash-completion && $PKG/usr/bin/procs --completion bash && \ install -Dm644 $SRC/procs.bash \ $PKG/usr/share/bash-completion/completions/procs || true prt-get isinst zsh && $PKG/usr/bin/procs --completion zsh && \ install -Dm644 $SRC/_procs $PKG/usr/share/zsh/site-functions/_procs || \ true }