Package Details: vmware-govc-bin 0.37.0-1

Git Clone URL: https://aur.archlinux.org/vmware-govc-bin.git (read-only, click to copy)
Package Base: vmware-govc-bin
Description: VMWare vSphere CLI
Upstream URL: https://github.com/vmware/govmomi/tree/master/govc
Licenses: Apache
Submitter: minus
Maintainer: minus
Last Packager: minus
Votes: 3
Popularity: 0.000000
First Submitted: 2020-09-10 13:09 (UTC)
Last Updated: 2024-04-13 09:09 (UTC)

Dependencies (0)

Required by (0)

Sources (1)

Latest Comments

minus commented on 2021-01-13 14:31 (UTC)

Updated, thanks!

hoban commented on 2021-01-13 00:03 (UTC) (edited on 2021-01-13 00:03 (UTC) by hoban)

Thanks for maintaining this package!

For the 0.24.0 release, the following minor changes worked for me:

# Maintainer: minus <minus@mnus.de>

pkgname=vmware-govc-bin
pkgver=0.24.0
pkgrel=1
pkgdesc="VMWare vSphere CLI"
arch=('x86_64')
url="https://github.com/vmware/govmomi/tree/master/govc"
license=('Apache')
source=(
    "https://github.com/vmware/govmomi/releases/download/v$pkgver/govc_linux_amd64.gz"
    "https://github.com/vmware/govmomi/archive/v$pkgver.tar.gz"
)
sha1sums=('cf1d86442e15d1677576b8b748d508427d43f915'
          '12393ead29cbc448c425a3d901fb432d97bcab61')

package() {
  cd "$srcdir"

  gzip -kfd govc_linux_amd64.gz
  install -Dm755 govc_linux_amd64 "$pkgdir/usr/bin/govc"
  install -Dm644 "govmomi-$pkgver/LICENSE.txt" "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}