mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-07 12:54:32 +02:00
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
# Contributor: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
# Maintainer: Sören Tempel <soeren+alpine@soeren-tempel.net>
|
|
pkgname=restic
|
|
pkgver=0.18.0
|
|
pkgrel=2
|
|
pkgdesc="Fast, secure, efficient backup program"
|
|
url="https://restic.net/"
|
|
arch="all"
|
|
license="BSD-2-Clause"
|
|
makedepends="go"
|
|
checkdepends="python3"
|
|
options="net chmod-clean"
|
|
subpackages="$pkgname-doc $pkgname-bash-completion $pkgname-zsh-completion $pkgname-fish-completion"
|
|
source="https://github.com/restic/restic/releases/download/v$pkgver/restic-$pkgver.tar.gz"
|
|
|
|
export GOCACHE="${GOCACHE:-"$srcdir/go-cache"}"
|
|
export GOTMPDIR="${GOTMPDIR:-"$srcdir"}"
|
|
export GOMODCACHE="${GOMODCACHE:-"$srcdir/go"}"
|
|
|
|
build() {
|
|
go build -v ./cmd/...
|
|
}
|
|
|
|
check() {
|
|
# may fail if /tmp is tmpfs
|
|
rm internal/fs/node_xattr_all_test.go
|
|
RESTIC_TEST_FUSE=0 make test
|
|
}
|
|
|
|
package() {
|
|
install -Dm755 $pkgname "$pkgdir"/usr/bin/$pkgname
|
|
|
|
local man
|
|
for man in doc/man/*.?; do
|
|
install -Dm644 "$man" \
|
|
"$pkgdir"/usr/share/man/man${man##*.}/${man##*/}
|
|
done
|
|
|
|
install -Dm644 doc/bash-completion.sh \
|
|
"$pkgdir"/usr/share/bash-completion/completions/$pkgname
|
|
install -Dm644 doc/zsh-completion.zsh \
|
|
"$pkgdir"/usr/share/zsh/site-functions/_$pkgname
|
|
install -Dm644 doc/fish-completion.fish \
|
|
"$pkgdir"/usr/share/fish/vendor_completions.d/$pkgname.fish
|
|
}
|
|
|
|
sha512sums="
|
|
964422cd52abd68e2a860eb18ce277da7b0093657244deb56849f656e9c7f0f29de5478b0124644a7b5aceb39fa83feab0686f9634a5f48ac38614f1d73d02f4 restic-0.18.0.tar.gz
|
|
"
|