26 lines
890 B
Plaintext
26 lines
890 B
Plaintext
# 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.13.0
|
|
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
|
|
[[ ! -e $PKGMK_SOURCE_DIR/rust ]] && mkdir $PKGMK_SOURCE_DIR/rust
|
|
export CARGO_HOME=$PKGMK_SOURCE_DIR/rust
|
|
|
|
cargo build --release --manifest-path $name-$version/Cargo.toml
|
|
|
|
prt-get isinst bash-completion && $PKG/usr/bin/procs --completion bash && \
|
|
install -Dm644 $SRC/procs.bash \
|
|
$PKG/usr/share/bash-completion/completions/procs
|
|
prt-get isinst zsh && $PKG/usr/bin/procs --completion zsh && \
|
|
install -Dm644 $SRC/_procs $PKG/usr/share/zsh/site-functions/_procs
|
|
|
|
install -Dt $PKG/usr/bin $name-$version/target/release/$name
|
|
}
|