summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: b4bed5ea19a2e575bd50c07d361e99e4fdc36d5c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Maintainer: Victor <victor@xirion.net>

pkgname=rke-bin
pkgver=v0.1.17
pkgrel=1
pkgdesc='Rancher Kubernetes Engine, an extremely simple, lightning fast Kubernetes installer that works everywhere. '
arch=('x86_64')
url='https://github.com/rancher/rke'
license=('Apache')
provides=('rke')
source=("https://github.com/rancher/rke/releases/download/${pkgver}/rke_linux-amd64")
md5sums=('926a0b72b9595de53ea000bcef710064')

package() {
    mkdir -p "${pkgdir}/usr/bin"
    install -D -m755 rke_linux-amd64 "${pkgdir}/usr/bin/rke"
}