summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: c166ff2fa57e1ba1d83996f005ebf886a82edfd1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Maintainer: Victor <victor@xirion.net>
pkgname=k9s-bin
pkgver=0.6.1
pkgrel=1
pkgdesc='Kubernetes CLI To Manage Your Clusters In Style!'
arch=('x86_64')
url='https://github.com/derailed/k9s'
license=('Apache')
provides=('k9s')
source=("https://github.com/derailed/k9s/releases/download/${pkgver}/k9s_${pkgver}_Linux_x86_64.tar.gz")
md5sums=('29c2dd13bc7038c1d7e33b18ef17d253')

package() {
    mkdir -p "${pkgdir}/usr/bin"
    install -D -m755 "${srcdir}/k9s" "${pkgdir}/usr/bin/k9s"
}