diff options
author | Simon Weald | 2018-10-31 19:39:56 +0000 |
---|---|---|
committer | Simon Weald | 2018-10-31 19:39:56 +0000 |
commit | 5c03ba8c5f04d59dc0e2e384905b31042d3cb6fc (patch) | |
tree | f8cd3987ecea7aa3435036e136b59f114985b97e | |
parent | 44d375a8ecf65cf46bd8e7158604c569d483e8aa (diff) | |
download | aur-5c03ba8c5f04d59dc0e2e384905b31042d3cb6fc.tar.gz |
bumped release to 1.8.0 and improved PKGBUILD
-rw-r--r-- | .SRCINFO | 8 | ||||
-rw-r--r-- | PKGBUILD | 8 |
2 files changed, 8 insertions, 8 deletions
@@ -1,14 +1,14 @@ # Generated by mksrcinfo v8 -# Mon Sep 24 07:15:04 UTC 2018 +# Wed Oct 31 19:38:46 UTC 2018 pkgbase = fluxctl-bin pkgdesc = CLI client for Flux, the GitOps Kubernetes operator - pkgver = 1.7.0 + pkgver = 1.8.0 pkgrel = 1 url = https://github.com/weaveworks/flux arch = x86_64 license = apache - source = https://github.com/weaveworks/flux/releases/download/1.7.0/fluxctl_linux_amd64 - sha256sums = cbcf996f32aef3b9c48b4c48aa7281e88b970eb24e2e208ccfcaf0a51a35b832 + source = fluxctl_linux_amd64-1.8.0::https://github.com/weaveworks/flux/releases/download/1.8.0/fluxctl_linux_amd64 + sha256sums = 8e1b766d1dab42527893c4529b93f7a00ee83b5fe50beff736b1bf19158db201 pkgname = fluxctl-bin @@ -2,15 +2,15 @@ pkgname=fluxctl-bin pkgdesc="CLI client for Flux, the GitOps Kubernetes operator" -pkgver=1.7.0 +pkgver=1.8.0 pkgrel=1 arch=('x86_64') url="https://github.com/weaveworks/flux" license=('apache') _binary=fluxctl_linux_amd64 -source=("https://github.com/weaveworks/flux/releases/download/$pkgver/$_binary") -sha256sums=('cbcf996f32aef3b9c48b4c48aa7281e88b970eb24e2e208ccfcaf0a51a35b832') +source=("$_binary-$pkgver::https://github.com/weaveworks/flux/releases/download/$pkgver/$_binary") +sha256sums=('8e1b766d1dab42527893c4529b93f7a00ee83b5fe50beff736b1bf19158db201') package() { - install -Dm 755 "$srcdir/$_binary" "$pkgdir/usr/bin/fluxctl" + install -Dm 755 "$srcdir/$_binary-$pkgver" "$pkgdir/usr/bin/fluxctl" } |