blob: 93bc5ee434e2cadff513523bb5632af12f3204dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer: Daniel Haß <aur@hass.onl>
pkgname=rancher-cli-bin
pkgver=2.10.0
pkgrel=1
pkgdesc="The Rancher Command Line Interface (CLI) is a unified tool to manage your Rancher server."
arch=('x86_64')
url="https://github.com/rancher/cli"
license=('APACHE')
source=("https://github.com/rancher/cli/releases/download/v${pkgver}/rancher-linux-amd64-v${pkgver}.tar.xz")
sha256sums=("2573e60f152d13c907ceb557fe1ee38322c21348eb54701a4e22d5ebea96b593")
package() {
mkdir -p "$pkgdir/usr/bin"
install -Dm755 $srcdir/rancher-v${pkgver}/rancher $pkgdir/usr/bin/rancher
}
|