23 lines
732 B
Bash
23 lines
732 B
Bash
# Template file for 'kopia'
|
|
pkgname=kopia
|
|
version=0.15.0
|
|
revision=1
|
|
build_style=go
|
|
build_helper=qemu
|
|
go_import_path=github.com/kopia/kopia
|
|
go_ldflags="-X ${go_import_path}/repo.BuildVersion=${version}
|
|
-X '${go_import_path}/repo.BuildInfo=Void Linux'"
|
|
short_desc="Fast and secure backup tool"
|
|
maintainer="Daniel Eyßer <daniel.eysser@gmail.com>"
|
|
license="Apache-2.0"
|
|
homepage="https://kopia.io/"
|
|
distfiles="https://github.com/kopia/kopia/archive/v${version}.tar.gz"
|
|
checksum=7000f6999ea8d1975645293c3f4f3ba25583ba13d3095aef3cf274251b36b75f
|
|
|
|
post_install() {
|
|
for shell in bash zsh; do
|
|
vtargetrun ${DESTDIR}/usr/bin/${pkgname} --completion-script-${shell} > completions.${shell}
|
|
vcompletion completions.${shell} ${shell}
|
|
done
|
|
}
|