Files
rancher-k3d-bin/PKGBUILD
2020-06-04 11:17:24 +02:00

17 lines
543 B
Bash

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