blob: c5fe25a63823fd0c21d13225b1c6658108af8d10 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# Maintainer: Simon Weald <simon[at]simonweald[dot]com>
pkgname=fluxctl-bin
pkgdesc="CLI client for Flux, the GitOps Kubernetes operator"
pkgver=1.8.0
pkgrel=1
arch=('x86_64')
url="https://github.com/weaveworks/flux"
license=('apache')
_binary=fluxctl_linux_amd64
source=("$_binary-$pkgver::https://github.com/weaveworks/flux/releases/download/$pkgver/$_binary")
sha256sums=('8e1b766d1dab42527893c4529b93f7a00ee83b5fe50beff736b1bf19158db201')
package() {
install -Dm 755 "$srcdir/$_binary-$pkgver" "$pkgdir/usr/bin/fluxctl"
}
|