diff options
Diffstat (limited to 'meta-oe/recipes-support/opensc/opensc_0.25.1.bb')
-rw-r--r-- | meta-oe/recipes-support/opensc/opensc_0.25.1.bb | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/opensc/opensc_0.25.1.bb b/meta-oe/recipes-support/opensc/opensc_0.25.1.bb new file mode 100644 index 00000000000..636bfa0366a --- /dev/null +++ b/meta-oe/recipes-support/opensc/opensc_0.25.1.bb @@ -0,0 +1,46 @@ +SUMMARY = "Smart card library and applications" +DESCRIPTION = "OpenSC is a tool for accessing smart card devices. Basic\ +functionality (e.g. SELECT FILE, READ BINARY) should work on any ISO\ +7816-4 compatible smart card. Encryption and decryption using private\ +keys on the smart card is possible with PKCS\ +such as the FINEID (Finnish Electronic IDentity) card. Swedish Posten\ +eID cards have also been confirmed to work." +HOMEPAGE = "https://github.com/OpenSC/OpenSC/wiki" +SECTION = "System Environment/Libraries" +LICENSE = "LGPL-2.1-or-later" +LIC_FILES_CHKSUM = "file://COPYING;md5=cb8aedd3bced19bd8026d96a8b6876d7" +DEPENDS = "openssl" + +SRCREV = "0a4b772d6fdab9bfaaa3123775a48a7cb6c5e7c6" +SRC_URI = "git://github.com/OpenSC/OpenSC;branch=stable-0.25;protocol=https" + +S = "${WORKDIR}/git" + +inherit autotools pkgconfig bash-completion + +EXTRA_OECONF = " \ + --disable-ctapi \ + --disable-doc \ + --disable-static \ + --disable-strict \ +" +EXTRA_OEMAKE = "DESTDIR=${D}" + +PACKAGECONFIG ??= "pcsc" + +PACKAGECONFIG[openct] = "--enable-openct,--disable-openct,openct" +PACKAGECONFIG[pcsc] = "--enable-pcsc,--disable-pcsc,pcsc-lite,pcsc-lite pcsc-lite-lib" +PACKAGECONFIG[readline] = "--enable-readline,--disable-readline,readline" + +FILES:${PN} += "\ + ${libdir}/opensc-pkcs11.so \ + ${libdir}/pkcs11-spy.so \ +" +FILES:${PN}-dev += "\ + ${libdir}/onepin-opensc-pkcs11.so \ + ${libdir}/pkcs11/opensc-pkcs11.so \ + ${libdir}/pkcs11/onepin-opensc-pkcs11.so \ + ${libdir}/pkcs11/pkcs11-spy.so \ +" + +BBCLASSEXTEND = "native" |