# Maintainer: networkException pkgname=restic-integrity pkgver=1.2.0 pkgrel=1 pkgdesc="Check the integrity of a restic repository without unlocking it" arch=('x86_64') url="https://gitlab.upi.li/networkException/restic-integrity" license=('BSD') depends=() makedepends=('cargo') source=("$pkgname-$pkgver.tar::https://gitlab.upi.li/networkException/$pkgname/-/archive/$pkgver/$pkgname-$pkgver.tar") sha256sums=('bdfee19a7a94bdf496eb523a6178044b85c6f0a967bba5acdb8ca3b656b897b4') build() { cd "$pkgname-$pkgver" cargo build --release --locked } package() { cd "$pkgname-$pkgver" install -Dm755 "target/release/restic-integrity" "$pkgdir/usr/bin/restic-integrity" install -Dm644 "README.md" "$pkgdir/usr/share/doc/${pkgname}/README.md" install -Dm644 "LICENSE" "$pkgdir/usr/share/licenses/${pkgname}/LICENSE" }