blob: 28e684ac003c77d34a8d5d4c9b115c83ab9cba2b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# Maintainer: Duologic <jeroen@simplsitic.be>
# Maintainer: sh0rez <me@shorez.de>
pkgname=tanka-bin
pkgver=0.26.0
pkgrel=0
pkgdesc='Flexible, reusable and concise configuration for Kubernetes using Jsonnet'
arch=('x86_64')
url='https://tanka.dev'
license=('Apache')
source=("tk-$pkgver::https://github.com/grafana/tanka/releases/download/v${pkgver}/tk-linux-amd64")
depends=('diffutils' 'kubectl')
optdepends=(
'jsonnet-bundler-bin: jsonnet package manager'
'helm: optional helm integration'
'kustomize: optional kustomize integration'
)
provides=(tanka)
conflicts=(tanka)
package() {
install -Dm 755 "$srcdir/tk-$pkgver" "$pkgdir/usr/bin/tk"
}
sha256sums=('089796ae2ce65390501b2c68ceca1ce99ff12787d5ae3b4823c825a07e6e22f4')
|