blob: a3e7af4fac5d69e0ed95c71178bcf6c0be6b701d (
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
|
# Contributor: Jakub Jirutka <jakub@jirutka.cz>
# Maintainer: Jakub Jirutka <jakub@jirutka.cz>
pkgname=yubico-c
pkgver=1.13
pkgrel=0
pkgdesc="YubiKey C low-level library"
url="https://developers.yubico.com/yubico-c/"
arch="all"
license="BSD-2-Clause"
subpackages="$pkgname-dev $pkgname-doc $pkgname-tools"
source="https://developers.yubico.com/$pkgname/Releases/libyubikey-$pkgver.tar.gz"
builddir="$srcdir/libyubikey-$pkgver"
build() {
cd "$builddir"
./configure \
--build=$CBUILD \
--host=$CHOST \
--prefix=/usr \
--sysconfdir=/etc \
--mandir=/usr/share/man \
--localstatedir=/var
make
}
check() {
cd "$builddir"
make check
}
package() {
cd "$builddir"
make DESTDIR="$pkgdir" install
}
tools() {
pkgdesc="$pkgdesc (CLI tools)"
mkdir -p "$subpkgdir"/usr/
mv "$pkgdir"/usr/bin "$subpkgdir"/usr/
}
sha512sums="28f45cb9817c30a70d168ae507d3f8014051058d730eed92b31d92e96784138dea291bda4275511c5f92a6427cb4249d76c802b8abb867cec50e62fb770950f2 libyubikey-1.13.tar.gz"
|