Added picc_to_pcsc.

git-svn-id: https://vsmartcard.svn.sourceforge.net/svnroot/vsmartcard@7 96b47cad-a561-4643-ad3b-153ac7d7599c
This commit is contained in:
frankmorgner
2010-01-04 19:56:05 +00:00
parent 4c091b4340
commit 54e468fa29
9 changed files with 1150 additions and 1 deletions

28
bitbake/picctopcsc.bb Normal file
View File

@@ -0,0 +1,28 @@
DESCRIPTION = "Virtual Smartcard with PCSC Driver and CCID to PCSC Gadget"
LICENSE = "GPL"
DEPENDS = "pcsc-lite"
RDEPENDS = "pcsc-lite"
SRC_URI = "svn://svn.informatik.hu-berlin.de/svn/NFC;module=picc_to_pcsc;proto=https;rev=357"
S = "${WORKDIR}"
LIBPCSCLITE_CFLAGS = -I${STAGING_INCDIR}/PCSC -lpcsclite
INSTALL = install
INSTALL_PROGRAM = ${INSTALL}
FILES_${PN} = "\
${bindir}/* \
"
do_compile() {
${CC} ${S}/picc_to_pcsc/picc_to_pcsc.c -o ${S}/picc_to_pcsc/picc_to_pcsc \
${LIBPCSCLITE_CFLAGS} ${CFLAGS}
}
do_install() {
${INSTALL} -d ${D}${bindir}
${INSTALL_PROGRAM} ${S}/picc_to_pcsc/picc_to_pcsc ${D}${bindir}
}

View File

@@ -1,5 +1,5 @@
DESCRIPTION = "Virtual Smartcard with PCSC Driver and CCID to PCSC Gadget"
LICENSE = "GPL"
DEPENDS = "ccid virtualsmartcard"
DEPENDS = "ccid virtualsmartcard picctopcsc"