blob: 24b0cff43d099ef0842560b762156a3e3323d2b4 (
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.0
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=('e9e0c87bd7fdd1f1d6e10d63736c208d6d464977855554213d16d25af1abd4a2')
sha256sums_aarch64=('e248831b1c72cd91e0dbf6133596676d5a99a86fe2af5ce7c83e157993640a8a')
sha256sums_armv6h=('2133960966c060efd9b3591b90d2ddec31b01270c800ded3a64b550ba37295d8')
sha256sums_armv7h=('b5440ece0051bd1f5ae6934f34617ecdcc22b024f557054afa55a23b499ebb69')
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"
}
|