contrib/procs/Pkgfile

28 lines
994 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.14.5
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 && $name-$version/target/release/$name \
--gen-completion-out bash >> $SRC/procs.bash && \
install -Dm644 $SRC/procs.bash \
$PKG/usr/share/bash-completion/completions/procs
prt-get isinst zsh && $name-$version/target/release/$name \
--gen-completion-out zsh >> $SRC/_procs.zsh && \
install -Dm644 $SRC/_procs.zsh $PKG/usr/share/zsh/site-functions/_procs
install -Dt $PKG/usr/bin $name-$version/target/release/$name
}