Package Details: kubecfg-bin 0.34.3-1

Git Clone URL: https://aur.archlinux.org/kubecfg-bin.git (read-only, click to copy)
Package Base: kubecfg-bin
Description: A tool for managing complex enterprise Kubernetes environments as code
Upstream URL: https://github.com/kubecfg/kubecfg
Licenses: Apache
Submitter: dmrz
Maintainer: cannon
Last Packager: cannon
Votes: 1
Popularity: 0.000004
First Submitted: 2022-06-23 03:05 (UTC)
Last Updated: 2024-03-11 11:53 (UTC)

Dependencies (2)

Required by (0)

Sources (1)

Latest Comments

wikoion commented on 2022-12-06 11:13 (UTC)

Just needs the version updating in the pkgbuild:

# kubecfg-bin

# Maintainer: dmrz < user on aur.archlinux.org >

pkgname=kubecfg-bin
pkgver=0.28.0
pkgrel=1
pkgdesc="A tool for managing complex enterprise Kubernetes environments as code"
url="https://github.com/kubecfg/kubecfg"
license=('Apache')
arch=('x86_64')
makedepends=('git' 'go')
source=("${pkgname}-${pkgver}::https://github.com/kubecfg/kubecfg/releases/download/v${pkgver}/kubecfg_Linux_X64")
md5sums=('SKIP')

package() {
  install -Dm755 "${srcdir}"/kubecfg* "${pkgdir}/usr/bin/kubecfg"

  "$pkgdir/usr/bin/kubecfg" completion --shell bash |
    install -Dm644 /dev/stdin "$pkgdir/usr/share/bash-completion/completions/kubecfg"
  "$pkgdir/usr/bin/kubecfg" completion --shell zsh |
    install -Dm644 /dev/stdin "$pkgdir/usr/share/zsh/site-functions/_kubecfg"
}