Add new build dependency on zlib as package no longer builds without it being present. 1.5.4 - 29 October 2023, Ludovic Rousseau - fix a regression introduced in 1.5.3 1.5.3 - 25 October 2023, Ludovic Rousseau - Add support of - ACS ACR1552 1S CL Reader - ACS ACR1552 CL Reader - ACS ACR1581 - ACS ACR40T ICC Reader - ACS ACR40U ICC Reader - ACS WalletMate 1S CL Reader - Aktiv Rutoken SCR 3101 NFC Reader - CIRIGHT ONE PASS U2F - Dexon Tecnologias Digitais LTDA eSmartDX - Excelsecu Card reader - GHI NC001 - Identiv uTrust Token Flex - SpringCard M519 with idProduct: 0x6212 - SpringCard M519 with idProduct: 0x621A - WCMi SD5931 - parse: create output.bin file - udev: Disable USB-persist for CCID devices - configure: fail if flex is not found - Some other minor improvements 1.5.2 - 31 January 2023, Ludovic Rousseau - Add support of - KAPELSE KAP-LINK - LDU LANDI - Sensyl SSC-HV Reader - TOKEN2 MFA NFC Reader - TOKEN2 Molto2 - Thales RF Reader - Alcor Micro AU9560: Remove high speeds since they are not supported - Hack for AlcorMicro AU9560 and Acos-ID card - configure.ac: disable the use of --disable-usbdropdir Signed-off-by: Daniel Golle <daniel@makrotopia.org>
53 lines
1.2 KiB
Makefile
53 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.4
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://ccid.apdu.fr/files/
|
|
PKG_HASH:=6e832adc172ecdcfdee2b56f33144684882cbe972daff1938e7a9c73a64f88bf
|
|
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))
|