blob: ba4dea2644408ad3064acaaef0427080e49935a0 (
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.30.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=('088c16d74bb2c5079ef14ccd0f48a03eb0c59be3f247813eff6bfb8e91978a3f')
sha256sums_aarch64=('46657d5400feeea0d16650114ed2397434c2813fa2ac9bc5cc1d097d8623ce10')
sha256sums_armv6h=('fcd6ed19b3e065ae5052bd573a4da5974882e009a52b17cd60a55b859b56875f')
sha256sums_armv7h=('eb27a3e984a2d25c0c7bd758e8e62ab833a7797a9816a0015107a41d771eb4ae')
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"
}
|