blob: cf7abd5ba4e94986d4395eb1f37dc9ce72fc93e5 (
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
30
31
32
33
34
|
# Maintainer: Wiktor Kwapisiewicz <wiktor@metacode.biz>
pkgname=pks-openpgp-card-git
pkgver=0.1
pkgrel=1
pkgdesc="Provides access to OpenPGP Cards through Private Key Store protocol"
license=('LGPL')
url="https://gitlab.com/sequoia-pgp/pks-openpgp-card"
arch=('x86_64')
makedepends=(cargo git)
source=("pks-openpgp-card::git+https://gitlab.com/sequoia-pgp/pks-openpgp-card")
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
sha512sums=('SKIP')
build() {
cd "${srcdir}/${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
export CARGO_TARGET_DIR=target
cargo build --frozen --release --all-features
}
check() {
cd "${srcdir}/${pkgname%-git}"
export RUSTUP_TOOLCHAIN=stable
cargo test --frozen --all-features
}
package() {
cd "${srcdir}/${pkgname%-git}"
install -Dm0755 -t "$pkgdir/usr/bin/" "target/release/${pkgname%-git}"
install -Dm0644 -t "$pkgdir/usr/lib/systemd/user/" "contrib/${pkgname%-git}.socket"
install -Dm0644 -t "$pkgdir/usr/lib/systemd/user/" "contrib/${pkgname%-git}.service"
}
|