ports/contrib (3.7): pcsclite: initial commit, version
commit 51db31d1c4f23ecceaafc3126c3a6edee4e8d571 Author: Tim Biermann <tbier@posteo.de> Date: Tue Mar 22 20:10:37 2022 +0100 pcsclite: initial commit, version diff --git a/pcsclite/.footprint b/pcsclite/.footprint new file mode 100644 index 000000000..5a427186a --- /dev/null +++ b/pcsclite/.footprint @@ -0,0 +1,34 @@ +drwxr-xr-x root/root usr/ +drwxr-xr-x root/root usr/bin/ +-rwxr-xr-x root/root usr/bin/pcsc-spy +drwxr-xr-x root/root usr/include/ +drwxr-xr-x root/root usr/include/PCSC/ +-rw-r--r-- root/root usr/include/PCSC/debuglog.h +-rw-r--r-- root/root usr/include/PCSC/ifdhandler.h +-rw-r--r-- root/root usr/include/PCSC/pcsclite.h +-rw-r--r-- root/root usr/include/PCSC/reader.h +-rw-r--r-- root/root usr/include/PCSC/winscard.h +-rw-r--r-- root/root usr/include/PCSC/wintypes.h +drwxr-xr-x root/root usr/lib/ +-rwxr-xr-x root/root usr/lib/libpcsclite.la +lrwxrwxrwx root/root usr/lib/libpcsclite.so -> libpcsclite.so.1.0.0 +lrwxrwxrwx root/root usr/lib/libpcsclite.so.1 -> libpcsclite.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libpcsclite.so.1.0.0 +-rwxr-xr-x root/root usr/lib/libpcscspy.la +lrwxrwxrwx root/root usr/lib/libpcscspy.so -> libpcscspy.so.0.0.0 +lrwxrwxrwx root/root usr/lib/libpcscspy.so.0 -> libpcscspy.so.0.0.0 +-rwxr-xr-x root/root usr/lib/libpcscspy.so.0.0.0 +drwxr-xr-x root/root usr/lib/pcsc/ +drwxr-xr-x root/root usr/lib/pcsc/drivers/ +drwxr-xr-x root/root usr/lib/pkgconfig/ +-rw-r--r-- root/root usr/lib/pkgconfig/libpcsclite.pc +drwxr-xr-x root/root usr/sbin/ +-rwxr-xr-x root/root usr/sbin/pcscd +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/pcsc-spy.1.gz +drwxr-xr-x root/root usr/share/man/man5/ +-rw-r--r-- root/root usr/share/man/man5/reader.conf.5.gz +drwxr-xr-x root/root usr/share/man/man8/ +-rw-r--r-- root/root usr/share/man/man8/pcscd.8.gz diff --git a/pcsclite/.signature b/pcsclite/.signature new file mode 100644 index 000000000..1b6384c32 --- /dev/null +++ b/pcsclite/.signature @@ -0,0 +1,5 @@ +untrusted comment: verify with /etc/ports/contrib.pub +RWSagIOpLGJF3yT1wbwIYBXDdbPdDzL3y9Kr+cctFscdsYHZTYBFksJ3vX+4N1ANOEGtcZWUUVscYg1yxyKu0lVvNV77rLEboQc= +SHA256 (Pkgfile) = 3b0b897f4dedabd5f3685078163448b55166bc8974bcf938675c0c6fca2dfdf7 +SHA256 (.footprint) = 0ca8131a7001ffc5d1d43af843c655265f355c8b48ab1a4f3ca3cdd65338df83 +SHA256 (pcsc-lite-1.9.5.tar.bz2) = 9ee3f9b333537562177893559ad4f7b8d5c23ebe828eef53056c02db14049d08 diff --git a/pcsclite/Pkgfile b/pcsclite/Pkgfile new file mode 100644 index 000000000..27d3356ef --- /dev/null +++ b/pcsclite/Pkgfile @@ -0,0 +1,26 @@ +# Description: Middleware to access a smart card using SCard API (PC/SC). +# URL: https://pcsclite.apdu.fr/ +# Maintainer: Tim Biermann, tbier at posteo dot de + +name=pcsclite +version=1.9.5 +release=1 +source=(https://pcsclite.apdu.fr/files/pcsc-lite-$version.tar.bz2) + +build() { + cd pcsc-lite-$version + + ./configure \ + --prefix=/usr \ + --sysconfdir=/etc \ + --enable-filter \ + --enable-ipcdir=/run/pcscd \ + --enable-libudev \ + --enable-usbdropdir=/usr/lib/pcsc/drivers \ + --disable-libsystemd + make + make DESTDIR=$PKG install + + rm -r $PKG/usr/share/doc + install -d $PKG/usr/lib/pcsc/drivers +}
participants (1)
-
crux@crux.nu