101 lines
2.6 KiB
Makefile
101 lines
2.6 KiB
Makefile
|
include $(TOPDIR)/rules.mk
|
||
|
|
||
|
PKG_NAME:=pcsc-lite
|
||
|
PKG_VERSION:=1.5.5
|
||
|
PKG_RELEASE:=2
|
||
|
|
||
|
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.bz2
|
||
|
PKG_SOURCE_URL:=http://alioth.debian.org/frs/download.php/3082
|
||
|
PKG_MD5SUM:=6707e967fc8bb398a5d1b1089d4dff63
|
||
|
|
||
|
include $(INCLUDE_DIR)/package.mk
|
||
|
|
||
|
define Package/pcsc-lite/Default
|
||
|
SECTION:=utils
|
||
|
CATEGORY:=Utilities
|
||
|
TITLE:=Middleware to access a smart card using SCard API (PC/SC).
|
||
|
URL:=http://pcsclite.alioth.debian.org/
|
||
|
endef
|
||
|
|
||
|
define Package/pcsc-lite/Default/description
|
||
|
The purpose of PC/SC Lite is to provide a Windows(R) SCard
|
||
|
interface in a very small form factor for communicating to
|
||
|
smart cards and smart cards readers.
|
||
|
endef
|
||
|
|
||
|
define Package/libpcsclite
|
||
|
$(call Package/pcsc-lite/Default)
|
||
|
SECTION:=libs
|
||
|
CATEGORY:=Libraries
|
||
|
TITLE+= (library)
|
||
|
DEPENDS:=+libusb +libpthread
|
||
|
endef
|
||
|
|
||
|
define Package/libpcsclite/description
|
||
|
$(call Package/pcsc-lite/Default/description)
|
||
|
.
|
||
|
This package contains the PC/SC shared library.
|
||
|
endef
|
||
|
|
||
|
define Package/pcscd
|
||
|
$(call Package/pcsc-lite/Default)
|
||
|
SECTION:=utils
|
||
|
CATEGORY:=Utilities
|
||
|
TITLE+= (daemon)
|
||
|
DEPENDS:=+libpcsclite
|
||
|
endef
|
||
|
|
||
|
define Package/pcscd/description
|
||
|
$(call Package/pcsc-lite/Default/description)
|
||
|
.
|
||
|
This package contains the PC/SC daemon.
|
||
|
endef
|
||
|
|
||
|
TARGET_CFLAGS += $(FPIC)
|
||
|
TARGET_LDFLAGS += -lpthread
|
||
|
|
||
|
define Build/Configure
|
||
|
$(call Build/Configure/Default, \
|
||
|
--disable-libhal \
|
||
|
--enable-libusb \
|
||
|
--enable-usbdropdir=/usr/lib/pcsc/drivers \
|
||
|
)
|
||
|
endef
|
||
|
|
||
|
define Build/Compile
|
||
|
$(MAKE) -C $(PKG_BUILD_DIR) \
|
||
|
DESTDIR="$(PKG_INSTALL_DIR)" \
|
||
|
all install
|
||
|
endef
|
||
|
|
||
|
define Build/InstallDev
|
||
|
$(INSTALL_DIR) $(1)/usr/include/PCSC
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/include/PCSC/* $(1)/usr/include/PCSC/
|
||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite.{a,so*} $(1)/usr/lib/
|
||
|
$(INSTALL_DIR) $(1)/usr/lib/pkgconfig
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/pkgconfig/libpcsclite.pc $(1)/usr/lib/pkgconfig/
|
||
|
endef
|
||
|
|
||
|
define Package/libpcsclite/install
|
||
|
$(INSTALL_DIR) $(1)/usr/lib
|
||
|
$(CP) $(PKG_INSTALL_DIR)/usr/lib/libpcsclite.so.* $(1)/usr/lib/
|
||
|
endef
|
||
|
|
||
|
define Package/pcscd/conffiles
|
||
|
/etc/reader.conf.d/reader.conf
|
||
|
endef
|
||
|
|
||
|
define Package/pcscd/install
|
||
|
$(INSTALL_DIR) $(1)/usr/sbin
|
||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/pcscd $(1)/usr/sbin/
|
||
|
$(INSTALL_DIR) $(1)/etc/init.d
|
||
|
$(INSTALL_BIN) ./files/pcscd.init $(1)/etc/init.d/pcscd
|
||
|
$(INSTALL_BIN) $(PKG_INSTALL_DIR)/usr/sbin/update-reader.conf $(1)/usr/sbin/
|
||
|
$(INSTALL_DIR) $(1)/etc/reader.conf.d
|
||
|
$(INSTALL_CONF) $(PKG_INSTALL_DIR)/etc/reader.conf.d/reader.conf $(1)/etc/reader.conf.d/
|
||
|
endef
|
||
|
|
||
|
$(eval $(call BuildPackage,libpcsclite))
|
||
|
$(eval $(call BuildPackage,pcscd))
|