1
0
forked from ports/contrib

yubico-c: initial commit

This commit is contained in:
Tim Biermann 2019-06-11 23:45:49 +02:00
parent e8fee23e66
commit 0fc940dfc1
Signed by untrusted user: tb
GPG Key ID: 42F8B4E30B673606
3 changed files with 41 additions and 0 deletions

19
yubico-c/.footprint Normal file
View File

@ -0,0 +1,19 @@
drwxr-xr-x root/root usr/
drwxr-xr-x root/root usr/bin/
-rwxr-xr-x root/root usr/bin/modhex
-rwxr-xr-x root/root usr/bin/ykgenerate
-rwxr-xr-x root/root usr/bin/ykparse
drwxr-xr-x root/root usr/include/
-rw-r--r-- root/root usr/include/yubikey.h
drwxr-xr-x root/root usr/lib/
-rw-r--r-- root/root usr/lib/libyubikey.a
-rwxr-xr-x root/root usr/lib/libyubikey.la
lrwxrwxrwx root/root usr/lib/libyubikey.so -> libyubikey.so.0.1.7
lrwxrwxrwx root/root usr/lib/libyubikey.so.0 -> libyubikey.so.0.1.7
-rwxr-xr-x root/root usr/lib/libyubikey.so.0.1.7
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/modhex.1.gz
-rw-r--r-- root/root usr/share/man/man1/ykgenerate.1.gz
-rw-r--r-- root/root usr/share/man/man1/ykparse.1.gz

5
yubico-c/.signature Normal file
View File

@ -0,0 +1,5 @@
untrusted comment: verify with /etc/ports/contrib.pub
RWSagIOpLGJF31RUuwCwLaZ1V4q07taZqOM6//fdl0BpCCr4FWfQHOjN2VKCwReXIAnyVNwzcmBeZOrI9wmfwZK0kRUJc7H8hww=
SHA256 (Pkgfile) = f0c4009c2bdbc93e2120c77bbb811f22990c006a8014ca2a3c8595d6a53db9db
SHA256 (.footprint) = 0a4edef23b572b8f09d74ec7888ad225e0fd9b696ea42d97831b3f2b80a56eb0
SHA256 (libyubikey-1.13.tar.gz) = dd046c83e67560206b0b3301ee8053922b516e3975b895804582eb8d7bdd1d79

17
yubico-c/Pkgfile Normal file
View File

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