blob: 927c4cafa4e6fae837af7eb3076a6c8d458e21fe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Maintainer: Chmouel Boudjnah <chmouel@chmouel.com>
pkgname=kss
pkgver=0.4.0
pkgrel=1
pkgdesc="Kubernetes pod status on steroid"
arch=('any')
url="https://github.com/chmouel/${pkgname}"
license=('Apache')
groups=('utils')
depends=('python>=3.6' 'kubectl' 'fzf')
source=("${pkgname}_${pkgver}-${pkgrel}.tar.gz::https://github.com/chmouel/${pkgname}/archive/refs/tags/${pkgver}.tar.gz")
sha512sums=('128ae79fce4ae3846c07f077b607aa23b8581821829af1c255f8b8a797f4829ffed7537e1ba0a05b161e6246e515555d5bc4096c21f332ad840ea35d16d2e9f3')
package() {
cd "${srcdir}/${pkgname}-${pkgver}"
# install binary
install -D -m0755 ${pkgname} "${pkgdir}/usr/bin/${pkgname}"
# install zsh completion
install -Dm644 "_kss" "${pkgdir}/usr/share/zsh/site-functions/_kss"
}
|