mirror of
https://github.com/openwrt/packages.git
synced 2026-05-31 15:02:01 +08:00
2eb0abc9a2
1.7.1 (4 February 2026): - Add support of: ACS APG8201-B2, BUDGET E-ID BUD001, CHERRY Smart Board 1150, CryptnoxCR CryptnoxCR, Diebold Nixdorf PN7362au CCID, FT BioPass FIDO2 Pro, Nitrokey Nitrokey Passkey - Add SCARD_CTL_CODE(3601): USB path of the reader - Some other minor improvements 1.7.0 (2 October 2025): - Add support of: GIGA-TMS NFC CCID Reader, Identiv SmartOS Reader, SEC1210URT, TOKEN2 FIDO2 Security Key (multiple variants), TOKEN2 Molto2 (older version), VIX TECHNOLOGY SECURE READER - Remove support of SIMHUB pcsc reader - Give pcscd group permission to CCID devices in udev rule - Avoid a timeout issue with the Thales Fusion NFC reader - Provide the option to synchronize the 2 interfaces of a SEC1210 - Some other minor improvements Link: https://ccid.apdu.fr/files/ChangeLog Signed-off-by: Daniel Golle <daniel@makrotopia.org>
54 lines
1.2 KiB
Makefile
54 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.7.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.xz
|
|
PKG_SOURCE_URL:=https://ccid.apdu.fr/files/
|
|
PKG_HASH:=32799ab16fe6e493c9452be3823f21810fbe80b884021a6f6f3fa69f26be5c86
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=LGPL-2.1-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_FIXUP:=libtool
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_DEPENDS:=zlib
|
|
|
|
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))
|