pcsclite: 2.3.0
This commit is contained in:
parent
f0e0e9954c
commit
f1c6015336
3 changed files with 69 additions and 0 deletions
1
pcsclite/.checksums
Normal file
1
pcsclite/.checksums
Normal file
|
@ -0,0 +1 @@
|
|||
194c175ba7cf4610f09c08d463edf12f63e8e6a694938049988efb10c91e15b05d91747d58013f2f35452427996e8fe2ffb3706806d17ee278dc4896eab901c0 pcsc-lite-2.3.0.tar.xz
|
38
pcsclite/.pkgfiles
Normal file
38
pcsclite/.pkgfiles
Normal file
|
@ -0,0 +1,38 @@
|
|||
pcsclite-2.3.0-1
|
||||
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/
|
||||
lrwxrwxrwx root/root usr/lib/libpcsclite.so -> libpcsclite.so.1
|
||||
-rwxr-xr-x root/root usr/lib/libpcsclite.so.1
|
||||
lrwxrwxrwx root/root usr/lib/libpcsclite_real.so -> libpcsclite_real.so.1
|
||||
-rwxr-xr-x root/root usr/lib/libpcsclite_real.so.1
|
||||
lrwxrwxrwx root/root usr/lib/libpcscspy.so -> libpcscspy.so.0
|
||||
-rwxr-xr-x root/root usr/lib/libpcscspy.so.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
|
||||
drwxr-xr-x root/root usr/share/metainfo/
|
||||
-rw-r--r-- root/root usr/share/metainfo/fr.apdu.pcsclite.metainfo.xml
|
||||
drwxr-xr-x root/root usr/share/polkit-1/
|
||||
drwxr-xr-x root/root usr/share/polkit-1/actions/
|
||||
-rw-r--r-- root/root usr/share/polkit-1/actions/org.debian.pcsc-lite.policy
|
30
pcsclite/spkgbuild
Normal file
30
pcsclite/spkgbuild
Normal file
|
@ -0,0 +1,30 @@
|
|||
# description : Middleware to access a smart card using SCard API (PC/SC)
|
||||
# homepage : https://pcsclite.apdu.fr
|
||||
# depends : polkit
|
||||
|
||||
name=pcsclite
|
||||
version=2.3.0
|
||||
release=1
|
||||
noextract=""
|
||||
backup=""
|
||||
source="https://pcsclite.apdu.fr/files/pcsc-lite-$version.tar.xz"
|
||||
|
||||
build() {
|
||||
meson setup pcsc-lite-$version build \
|
||||
--prefix=/usr \
|
||||
--sysconfdir=/etc \
|
||||
--sbindir=/usr/sbin/ \
|
||||
--buildtype=plain \
|
||||
--wrap-mode nodownload \
|
||||
-D b_lto=true \
|
||||
-D b_pie=true \
|
||||
-D libudev=true \
|
||||
-D usb=true \
|
||||
-D usbdropdir=/usr/lib/pcsc/drivers \
|
||||
-D libsystemd=false
|
||||
meson compile -C build
|
||||
DESTDIR=$PKG meson install -C build
|
||||
|
||||
rm -r $PKG/usr/share/doc
|
||||
install -d $PKG/usr/lib/pcsc/drivers
|
||||
}
|
Loading…
Reference in a new issue