yubico-c-client: initial commit

This commit is contained in:
Tim Biermann 2019-06-11 23:45:50 +02:00
parent 0fc940dfc1
commit 4f131dda84
Signed by: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 40 additions and 0 deletions

View File

@ -0,0 +1,18 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/ykclient
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/ykclient.h
-rw-r--r-- root/root usr/include/ykclient_errors.h
-rw-r--r-- root/root usr/include/ykclient_server_response.h
-rw-r--r-- root/root usr/include/ykclient_version.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libykclient.a
-rwxr-xr-x root/root usr/lib/libykclient.la
lrwxrwxrwx root/root usr/lib/libykclient.so -> libykclient.so.3.6.0
lrwxrwxrwx root/root usr/lib/libykclient.so.3 -> libykclient.so.3.6.0
-rwxr-xr-x root/root usr/lib/libykclient.so.3.6.0
drwxr-xr-x root/root usr/share/
drwxr-xr-x root/root usr/share/man/
drwxr-xr-x root/root usr/share/man/man1/
-rw-r--r-- root/root usr/share/man/man1/ykclient.1.gz

View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31gy/+m8nh/EqUrE4vITxTjtAl51Q82how6w2ZRestvMKuZHede5FzhrtCMOHIPhSuL4SmDo4y8Q4lWdbeNUYgk=
SHA256 (Pkgfile) = 349f802d4c51d0a07ca29bb3bc0081b6310bd629678dccd1e1075ce7a495707f
SHA256 (.footprint) = 526eeebac065065041c8d375be3a9739ecbea16688ecf9f3b5c6fe30c66bd008
SHA256 (ykclient-2.15.tar.gz) = 3863f4fc2f3320c59fcbf57862bba48bcb716fddb886840bb0dd8db14d5ab7f0

17
yubico-c-client/Pkgfile Normal file
View File

@ -0,0 +1,17 @@
# Description: Yubico YubiKey client C library
# URL: https://github.com/Yubico/yubico-c-client
# Maintainer: Tim Biermann, tbier at posteo dot de
# Depends on: yubico-c help2man
name=yubico-c-client
version=2.15
release=1
source=(https://github.com/Yubico/yubico-c-client/archive/ykclient-$version.tar.gz)
build() {
cd $name-ykclient-$version
autoreconf --install
./configure --prefix=/usr
make
make DESTDIR=$PKG install
}