void-packages/srcpkgs/bottom/template
UsernameRandomlyGenerated db749b34bf bottom: update to 0.6.3.
2021-07-20 11:42:15 -03:00

24 lines
842 B
Bash

# Template file for 'bottom'
pkgname=bottom
version=0.6.3
revision=1
build_style=cargo
short_desc="Yet another cross-platform graphical process/system monitor"
maintainer="Neel Chotai <neel@chot.ai>"
license="MIT"
homepage="https://github.com/ClementTsang/bottom"
distfiles="https://github.com/ClementTsang/bottom/archive/${version}.tar.gz"
checksum=7bbb07b1bab922548ed1be63a00d90aeeb5e64cdbc165e2dfde30dbaa9ef787e
post_install() {
vdoc README.md
vlicense LICENSE
# Completions are hidden deep the build tree
bash_completion=$(find ${wrksrc}/target -name btm.bash -print -quit)
vcompletion ${bash_completion} bash btm
fish_completion=$(find ${wrksrc}/target -name btm.fish -print -quit)
vcompletion ${fish_completion} fish btm
zsh_completion=$(find ${wrksrc}/target -name _btm -print -quit)
vcompletion ${zsh_completion} zsh btm
}