mirror of
https://github.com/openwrt/packages.git
synced 2025-02-12 01:10:54 +00:00
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
#
|
|
# Copyright (C) 2017 Daniel Engberg <daniel.engberg.lists@pyret.net>
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
PKG_NAME:=pcsc-tools
|
|
PKG_VERSION:=1.7.1
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
|
PKG_SOURCE_URL:=https://pcsc-tools.apdu.fr
|
|
PKG_HASH:=0d024b589e15d79eac8506cd67df7b53cf91e9e6a493c8319f33cd29b5f36426
|
|
|
|
PKG_MAINTAINER:=Daniel Golle <daniel@makrotopia.org>
|
|
PKG_LICENSE:=GPL-2.0-or-later
|
|
PKG_LICENSE_FILES:=COPYING
|
|
|
|
PKG_INSTALL:=1
|
|
PKG_BUILD_PARALLEL:=1
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/pcsc-tools
|
|
SECTION:=utils
|
|
CATEGORY:=Utilities
|
|
DEPENDS:=+libpcsclite
|
|
TITLE:=pcsc-tools
|
|
URL:=https://pcsc-tools.apdu.fr/
|
|
endef
|
|
|
|
define Package/pcsc-tools/description
|
|
Tools that are used to test a PC/SC driver, card or reader.
|
|
Only includes pcsc_scan without ATR analysis for now.
|
|
endef
|
|
|
|
define Package/pcsc-tools/install
|
|
$(INSTALL_DIR) $(1)/usr/bin
|
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pcsc_scan $(1)/usr/bin
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,pcsc-tools))
|