1.5.0 - 27 January 2022, Ludovic Rousseau - Add support of - ACS ACR1281U - Circle CCR7125 ICC - Circle CIR125 ICC - Circle CIR125-DOT ICC - Circle CIR215 CL with iProduct 0x2100 - Circle CIR315 DI - Circle CIR315 with idProduct: 0x0324 - Circle CIR315 with idProduct: 0x7004 - Circle CIR415 CL - Circle CIR515 ICC - Circle CIR615 CL - Circle CIR615 CL & 1S - ELYCTIS CL reader - Nitrokey Nitrokey 3 - Thales Shield M4 Reader - Add support of simultaneous slot access on multi slots readers - Use FeliCa instead of Felica on SONY request - Fix SafeNet eToken 5110 SC issue - Allow vendor control commands for Omnikey 5427 CK - always compute readTimeout to use a value greater than default 3 seconds - Check the bSeq value when receiving a CCID frame - Avoid logging errors when a reader is removed - Some other minor improvements Signed-off-by: Daniel Golle <daniel@makrotopia.org>
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
#
|
|
# Copyright (C) 2009-2012 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=ccid
|
|
PKG_VERSION:=1.5.0
|
|
PKG_RELEASE:=$(AUTORELEASE)
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://ccid.apdu.fr/files/
|
|
PKG_HASH:=81549b3422469d503996d03a3aed2ef1375b359167f10d66be9e3844e729322e
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_FIXUP:=libtool
|
|
PKG_INSTALL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/ccid
|
|
SECTION:=libs
|
|
CATEGORY:=Libraries
|
|
DEPENDS:=+libusb-1.0 +libpcsclite
|
|
TITLE:=Generic USB CCID smart card reader driver
|
|
URL:=https://ccid.apdu.fr/
|
|
endef
|
|
|
|
define Package/ccid/description
|
|
Generic USB CCID (Chip/Smart Card Interface Devices) driver and ICCD
|
|
(Integrated Circuit(s) Card Devices).
|
|
endef
|
|
|
|
TARGET_CFLAGS += $(FPIC)
|
|
|
|
TARGET_LDFLAGS += "-lpthread"
|
|
|
|
CONFIGURE_ARGS += \
|
|
--enable-embedded \
|
|
--enable-usbdropdir=/usr/lib/pcsc/drivers
|
|
|
|
define Package/ccid/install
|
|
$(INSTALL_DIR) $(1)/usr/lib/pcsc
|
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pcsc/drivers $(1)/usr/lib/pcsc/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,ccid))
|