19 lines
556 B
Bash
19 lines
556 B
Bash
# Template file for 'kubetail'
|
|
pkgname=kubetail
|
|
version=1.6.18
|
|
revision=1
|
|
depends="bash"
|
|
short_desc="Bash script to tail Kubernetes logs from multiple pods at the same time"
|
|
maintainer="Frank Steinborn <steinex@nognu.de>"
|
|
license="Apache-2.0"
|
|
homepage="https://github.com/johanhaleby/kubetail"
|
|
distfiles="https://github.com/johanhaleby/kubetail/archive/${version}.tar.gz"
|
|
checksum=62ba29b3a869bba5b2ddf8c0fbbd307330dfe8cf8f3d47ae459c327b66afbb93
|
|
|
|
do_install() {
|
|
vbin kubetail
|
|
for sh in bash fish zsh; do
|
|
vcompletion completion/kubetail.$sh $sh
|
|
done
|
|
}
|