initial commit

This commit is contained in:
Jonas Dellinger
2019-09-15 01:03:14 +02:00
commit 060d63c94f
3 changed files with 36 additions and 0 deletions

13
.SRCINFO Normal file
View File

@@ -0,0 +1,13 @@
pkgbase = rancher-k3d-bin
pkgdesc = Little helper to run Rancher Labs k3s in Docker
pkgver = 1.3.1
pkgrel = 1
url = https://github.com/rancher/k3d
arch = x86_64
license = MIT
provides = k3d
source = rancher-k3d-bin-1.3.1::https://github.com/rancher/k3d/releases/download/v1.3.1/k3d-linux-amd64
sha256sums = 52b127b76ef76652adf94e8310c85270ae24831ca222bb082d5ced0e80380916
pkgname = rancher-k3d-bin

8
.gitignore vendored Normal file
View File

@@ -0,0 +1,8 @@
src
pkg
*.src.tar.gz
*.pkg.tar.xz
*.part
*.AppImage
rancher-k3d-bin-*

15
PKGBUILD Normal file
View File

@@ -0,0 +1,15 @@
# Maintainer: Jonas Dellinger <jonas@dellinger.dev>
pkgname="rancher-k3d-bin"
pkgver=1.3.1
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=('52b127b76ef76652adf94e8310c85270ae24831ca222bb082d5ced0e80380916')
package() {
install -Dm 0755 ${pkgname}-${pkgver} "$pkgdir/usr/bin/k3d"
}