vp-build/srcpkgs/procs/template

29 lines
846 B
Bash

# Template file for 'procs'
pkgname=procs
version=0.12.2
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=14be8440fe85dc46e544a3f7e89b887db455a61db981d5f75b91fd89b366d84f
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
}