Files
rancher-k3d-bin/PKGBUILD
Jonas Dellinger 9065d6dc7e Updated: 1.6.0
2020-02-01 12:59:31 +01:00

16 lines
508 B
Bash

# Maintainer: Jonas Dellinger <jonas@dellinger.dev>
pkgname="rancher-k3d-bin"
pkgver=1.6.0
pkgrel=1
pkgdesc='Little helper to run Rancher Labs k3s in Docker'
arch=('x86_64')
url='https://github.com/rancher/k3d'
license=('MIT')
provides=("k3d")
source=("${pkgname}-${pkgver}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-amd64")
sha256sums=('c76f53762ef2c6aa1c9275156068e51a919523a0432353287b8a9099b06320b6')
package() {
install -Dm 0755 ${pkgname}-${pkgver} "$pkgdir/usr/bin/k3d"
}