summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 61ba9cd8c408e84741a518dbcec37f4b2838d0fd (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.16
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=('9ae8e8813e28f51a35ad9343478f2f19')

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