blob: 841c84d1fb8400c146ad790aeeafcada6aeabf33 (
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
35
36
37
38
39
40
41
42
43
44
|
pkgname=softu2f
pkgver=0.4.0
pkgrel=1
pkgdesc="Software U2F HID token daemon (rust-u2f)"
arch=(x86_64)
depends=(libdbus libsystemd openssl)
makedepends=(clang llvm rust)
_commit=1b49bad73b62a1b3982ec5af583dfa0f6ea5efb1
source=("git+https://github.com/danstiner/rust-u2f#commit=$_commit")
sha256sums=(SKIP)
pkgver() {
cd rust-u2f
git describe --tags | sed 's/^v//; s/-/.r/; s/-/./'
}
build() {
cd rust-u2f/linux
cargo build --release
}
package() {
cd rust-u2f/linux
install -Dm 755 target/release/softu2f-user-daemon \
"$pkgdir"/usr/libexec/softu2f/user-daemon
install -Dm 755 target/release/softu2f-system-daemon \
"$pkgdir"/usr/libexec/softu2f/system-daemon
install -Dm 644 user-daemon/softu2f.service \
"$pkgdir"/usr/lib/systemd/user/softu2f.service
install -Dm 644 system-daemon/softu2f.service \
"$pkgdir"/usr/lib/systemd/system/softu2f.service
install -Dm 644 system-daemon/softu2f.socket \
"$pkgdir"/usr/lib/systemd/system/softu2f.socket
install -Dm 644 system-daemon/softu2f-tmpfiles.conf \
"$pkgdir"/usr/lib/tmpfiles.d/softu2f.conf
}
# vim: ts=2:sw=2:et
|