blob: b1d523139901244e2bf65a56b4a1e24529b03ee7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Maintainer: Kent Hou Man <knthmn0 at gmail dot com>
pkgname=resticprofile-bin
pkgver=0.29.1
pkgrel=1
pkgdesc="Configuration profiles for restic backup. Pre-compiled"
arch=('x86_64' 'aarch64' 'armv6h' 'armv7h')
url="https://github.com/creativeprojects/resticprofile"
license=('GPL3')
depends=(
'restic'
)
provides=('resticprofile')
conflicts=('resticprofile')
source_x86_64=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_amd64.tar.gz")
source_aarch64=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_arm64.tar.gz")
source_armv6h=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_armv6.tar.gz")
source_armv7h=("https://github.com/creativeprojects/resticprofile/releases/download/v${pkgver}/resticprofile_${pkgver}_linux_armv7.tar.gz")
sha256sums_x86_64=('883bbf33316a190ea3e4a96a31121c2898fedc7b7c2a48bcf7dbb6fc20305807')
sha256sums_aarch64=('ff4ec300b0c91a25233b1c899d9b6b758bc326ac89710807a6c576e0a8f60b80')
sha256sums_armv6h=('2fd4c77d8152a8d0e5c6ed09e428b4d3531d4e7bcd090a722e35ee67bbb14b21')
sha256sums_armv7h=('9c25e8d94c3880be10ce3a6b46d33c3cc476569173b470b9615c5bc099630621')
package() {
install -Dm755 "${srcdir}/resticprofile" "${pkgdir}/usr/bin/resticprofile"
install -Dm644 "${srcdir}/LICENSE" "${pkgdir}/usr/share/licenses/resticprofile/LICENSE"
install -Dm644 "${srcdir}/README.md" "${pkgdir}/usr/share/doc/resticprofile/README.md"
}
|