summaryrefslogtreecommitdiff
path: root/manualPorts/pcsc-lite/Pkgfile
diff options
context:
space:
mode:
Diffstat (limited to 'manualPorts/pcsc-lite/Pkgfile')
-rw-r--r--manualPorts/pcsc-lite/Pkgfile24
1 files changed, 24 insertions, 0 deletions
diff --git a/manualPorts/pcsc-lite/Pkgfile b/manualPorts/pcsc-lite/Pkgfile
new file mode 100644
index 0000000..c3cb499
--- /dev/null
+++ b/manualPorts/pcsc-lite/Pkgfile
@@ -0,0 +1,24 @@
+# Description: Middleware to access a smart card using SCard API (PC/SC)
+# URL: https://pcsclite.alioth.debian.org/pcsclite.html
+# Maintainer: Erich Eckner, crux at eckner dot net
+# Contributor: John Vogel, jvogel4 at stny dot rr dot com
+# Depends on:
+
+name=pcsc-lite
+version=1.8.20
+release=1
+source=(https://alioth.debian.org/frs/download.php/file/4203/$name-$version.tar.bz2)
+
+build() {
+ ls -lA
+ cd $name-$version
+ ./configure \
+ --sbindir=/usr/bin \
+ --sysconfdir=/etc \
+ --enable-filter \
+ --enable-ipcdir=/run/pcscd \
+ --enable-libudev \
+ --enable-usbdropdir=/usr/lib/pcsc/drivers
+ make
+ make DESTDIR=$PKG install
+}