Update: 3.0.2 and added script for sha256sums

This commit is contained in:
Jonas Dellinger
2020-09-20 22:40:42 +02:00
parent 0ba5ac7ee3
commit bcd84f9df9
3 changed files with 32 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
# Maintainer: Jonas Dellinger <jonas@dellinger.dev>
pkgname="rancher-k3d-bin"
pkgver=3.0.1
pkgver=3.0.2
pkgrel=1
pkgdesc='Little helper to run Rancher Labs k3s in Docker'
arch=('x86_64' 'aarch64' 'arm' 'armv6h' 'armv7h')
@@ -10,9 +10,9 @@ provides=("k3d")
conflicts=("rancher-k3d-beta-bin")
case "${CARCH}" in
x86_64) _CARCH=amd64 && sha256sums=('e773d3a8377b6562d2cf29e7683c89ecc03f5843990c1853b810ca1c656aeb2e');;
aarch64) _CARCH=arm64 && sha256sums=('a861bf5cab4376706c69836f81688eb24c2d7775a45de40cbb0612e7631e2037');;
arm*) _CARCH=arm && sha256sums=('75a9ef3e0c67f9d5f950277932f68432424b3d44da1e3939270fdeda34b0ab7d');;
x86_64) _CARCH=amd64 && sha256sums=('4751acfdb6a90a2f39f97293c862835aa863744f4c8ac4654168527e0365f109');;
aarch64) _CARCH=arm64 && sha256sums=('714469cc62d4121015d4510677fe9b6b6208fa11f3f90ac07efc8da3d9db22fd');;
arm*) _CARCH=arm && sha256sums=('6466cdbe74603a3d44056ba84c944175a16f0e1048d816f7272c1ad6028b6bda');;
esac
source=("${pkgname}-${pkgver}-${_CARCH}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-${_CARCH}")