Added template for upcoming ci/cd pipeline

This commit is contained in:
Jonas Dellinger
2020-08-16 12:32:30 +02:00
parent dab92c965d
commit 9e79663fec
2 changed files with 24 additions and 2 deletions

View File

@@ -15,8 +15,8 @@ case "${CARCH}" in
arm*) _CARCH=arm && sha256sums=('b93de0bb52c3779c1aadd5a090d343ca39521b82a5137e5d2bd0c003293356b6');;
esac
source=("${pkgname}-${pkgver}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-${_CARCH}")
source=("${pkgname}-${pkgver}-${_CARCH}::https://github.com/rancher/k3d/releases/download/v$pkgver/k3d-linux-${_CARCH}")
package() {
install -Dm 0755 ${pkgname}-${pkgver} "$pkgdir/usr/bin/k3d"
install -Dm 0755 ${pkgname}-${pkgver}-${_CARCH} "$pkgdir/usr/bin/k3d"
}