You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

45 lines
1.1 KiB

  1. #
  2. # Copyright (C) 2017 Daniel Engberg <daniel.engberg.lists@pyret.net>
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=pcsc-tools
  9. PKG_VERSION:=1.5.7
  10. PKG_RELEASE:=1
  11. PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
  12. PKG_SOURCE_URL:=http://ludovic.rousseau.free.fr/softwares/pcsc-tools/
  13. PKG_HASH:=e0ea8f8496d5bcf5316da913869ba95b925d0405c2aaade801c0d6ce7697699d
  14. PKG_MAINTAINER:=
  15. PKG_LICENSE:=GPL-2.0-or-later
  16. PKG_LICENSE_FILES:=COPYING
  17. PKG_INSTALL:=1
  18. PKG_BUILD_PARALLEL:=1
  19. include $(INCLUDE_DIR)/package.mk
  20. define Package/pcsc-tools
  21. SECTION:=utils
  22. CATEGORY:=Utilities
  23. DEPENDS:=+libpcsclite
  24. TITLE:=pcsc-tools
  25. URL:=http://ludovic.rousseau.free.fr/softwares/pcsc-tools/
  26. endef
  27. define Package/pcsc-tools/description
  28. Tools that are used to test a PC/SC driver, card or reader.
  29. Only includes pcsc_scan without ATR analysis for now.
  30. endef
  31. define Package/pcsc-tools/install
  32. $(INSTALL_DIR) $(1)/usr/bin
  33. $(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/bin/pcsc_scan $(1)/usr/bin
  34. endef
  35. $(eval $(call BuildPackage,pcsc-tools))