void-packages/srcpkgs/procs/template
2022-01-20 00:49:05 +01:00

28 lines
846 B
Bash

# Template file for 'procs'
pkgname=procs
version=0.12.0
revision=1
build_style=cargo
build_helper=qemu
short_desc="Modern replacement for ps written in Rust"
maintainer="travankor <travankor@tuta.io>"
license="MIT"
homepage="https://github.com/dalance/procs"
changelog="https://raw.githubusercontent.com/dalance/procs/master/CHANGELOG.md"
distfiles="https://github.com/dalance/procs/archive/refs/tags/v${version}.tar.gz"
checksum=04dbb3ddc734a9d1305b26b546a913e3e04d556b5863212a2675d29268aebed3
post_build() {
PROCS="target/${RUST_TARGET}/release/procs"
vtargetrun ${PROCS} --completion-out bash >procs.bash
vtargetrun ${PROCS} --completion-out fish >procs.fish
vtargetrun ${PROCS} --completion-out zsh >procs.zsh
}
post_install() {
vcompletion procs.bash bash
vcompletion procs.fish fish
vcompletion procs.zsh zsh
vlicense LICENSE
}