19 lines
556 B
Bash
19 lines
556 B
Bash
# Template file for 'kubetail'
|
|
pkgname=kubetail
|
|
version=1.6.17
|
|
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=9dee9fbc4c472cf73666ee77e8f430e3aaea2ee3ca2f34dda15a4da9a6bad69a
|
|
|
|
do_install() {
|
|
vbin kubetail
|
|
for sh in bash fish zsh; do
|
|
vcompletion completion/kubetail.$sh $sh
|
|
done
|
|
}
|