# Maintainer: David Birks # Contributor: Victor Demonchy # Contributor: Wael Nasreddine pkgname=kubetail pkgver=1.6.12 pkgrel=1 pkgdesc='Tail Kubernetes logs from multiple pods' arch=('any') url='https://github.com/johanhaleby/kubetail' license=('Apache') depends=('kubectl') source=("$pkgname-$pkgver.tar.gz::https://github.com/johanhaleby/$pkgname/archive/$pkgver.tar.gz") sha256sums=('b5f3229361d520cc2f2de4b24d309ac49582e126e271525c85dc4b0975d57e59') package() { cd $pkgname-$pkgver install -Dm 755 kubetail "$pkgdir/usr/bin/kubetail" # Populate shell completions install -Dm 644 completion/kubetail.bash "$pkgdir/usr/share/bash-completion/completions/kubetail" install -Dm 644 completion/kubetail.zsh "$pkgdir/usr/share/zsh/site-functions/_kubetail" install -Dm 644 completion/kubetail.fish "$pkgdir/usr/share/fish/vendor_completions.d/kubetail.fish" }