27 lines
778 B
Bash
27 lines
778 B
Bash
# Template file for 'restic'
|
|
pkgname=restic
|
|
version=0.11.0
|
|
revision=1
|
|
build_style=go
|
|
go_import_path=github.com/restic/restic
|
|
go_package="${go_import_path}/cmd/restic"
|
|
go_ldflags="-X 'main.version=${version} (Void Linux)'"
|
|
short_desc="Backup solution written in Go"
|
|
maintainer="Florian Eich <flrn@nrmncr.net>"
|
|
license="BSD-2-Clause"
|
|
homepage="https://restic.net/"
|
|
changelog="https://raw.githubusercontent.com/restic/restic/master/CHANGELOG.md"
|
|
distfiles="https://github.com/restic/restic/releases/download/v${version}/restic-${version}.tar.gz"
|
|
checksum=73cf434ec93e2e20aa3d593dc5eacb221a71d5ae0943ca59bdffedeaf238a9c6
|
|
|
|
post_install() {
|
|
vlicense LICENSE
|
|
|
|
for f in doc/man/*; do
|
|
vman $f
|
|
done
|
|
|
|
vcompletion doc/bash-completion.sh bash
|
|
vcompletion doc/zsh-completion.zsh zsh
|
|
}
|