mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
testing/yubico-c: new aport
https://developers.yubico.com/yubico-c/ YubiKey C low-level library
This commit is contained in:
parent
d1c525417e
commit
0a8794909b
43
testing/yubico-c/APKBUILD
Normal file
43
testing/yubico-c/APKBUILD
Normal file
@ -0,0 +1,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"
|
Loading…
Reference in New Issue
Block a user