diff options
author | TimB87 <tbier@posteo.de> | 2019-06-11 23:45:49 +0200 |
---|---|---|
committer | TimB87 <tbier@posteo.de> | 2019-06-11 23:45:49 +0200 |
commit | 0fc940dfc1765abc4fe1dadf4f750dd09263cd9f (patch) | |
tree | c8246cd118c88ac60564847a6874bc48ecb1c6ed /yubico-c | |
parent | e8fee23e660456826d373ac219da1704be5bf0e7 (diff) | |
download | contrib-0fc940dfc1765abc4fe1dadf4f750dd09263cd9f.tar.gz contrib-0fc940dfc1765abc4fe1dadf4f750dd09263cd9f.tar.xz |
yubico-c: initial commit
Diffstat (limited to 'yubico-c')
-rw-r--r-- | yubico-c/.footprint | 19 | ||||
-rw-r--r-- | yubico-c/.signature | 5 | ||||
-rw-r--r-- | yubico-c/Pkgfile | 17 |
3 files changed, 41 insertions, 0 deletions
diff --git a/yubico-c/.footprint b/yubico-c/.footprint new file mode 100644 index 000000000..d5d1f2e9b --- /dev/null +++ b/yubico-c/.footprint @@ -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 diff --git a/yubico-c/.signature b/yubico-c/.signature new file mode 100644 index 000000000..2a73ff480 --- /dev/null +++ b/yubico-c/.signature @@ -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 diff --git a/yubico-c/Pkgfile b/yubico-c/Pkgfile new file mode 100644 index 000000000..bc3db88fa --- /dev/null +++ b/yubico-c/Pkgfile @@ -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 +} |