blob: bfe3ff086e6774df3fcbafdf7c843e0cd4caa845 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Maintainer: Dominic Brekau <aur@dominic.brekau.de>
pkgname=pv-migrate-bin
_pkgname=pv-migrate
pkgver=1.0.1
pkgrel=1
pkgdesc='CLI tool to easily migrate Kubernetes persistent volumes'
arch=('x86_64')
url='https://github.com/utkuozdemir/pv-migrate'
provides=('pv-migrate')
license=('Apache')
source=("https://github.com/utkuozdemir/${_pkgname}/releases/download/v${pkgver}/${_pkgname}_v${pkgver}_linux_x86_64.tar.gz")
sha256sums=('8203687e6bef11477eb0bda6fb11fd7bc4278b66fc16d0a58014fc93af33b71c')
package() {
install -Dm 755 "$srcdir/${_pkgname}" -t "$pkgdir/usr/bin"
install -Dm 644 "$srcdir/completions/${_pkgname}.bash" "$pkgdir/usr/share/bash-completion/completions/${_pkgname}"
install -Dm 644 "$srcdir/completions/${_pkgname}.zsh" "$pkgdir/usr/share/zsh/site-functions/_${_pkgname}"
install -Dm 644 "$srcdir/completions/${_pkgname}.fish" "$pkgdir/usr/share/fish/vendor_completions.d/${_pkgname}"
}
|