mirror of
https://github.com/openembedded/meta-openembedded.git
synced 2026-05-07 17:19:23 +00:00
0c9cb5fb09
Fix packing of missed installed file: | ERROR: opensc-0.27.1-r0 do_package: QA Issue: opensc: Files/directories were installed but not shipped in any package: | /usr/share/p11-kit | /usr/share/p11-kit/modules | /usr/share/p11-kit/modules/opensc.module | Please set FILES such that these items are packaged. Alternatively if they are unneeded, avoid installing them or delete them within do_install. | opensc: 3 installed and not shipped files. [installed-vs-shipped] Signed-off-by: Jose Quaresma <quaresma.jose@gmail.com> Signed-off-by: Khem Raj <khem.raj@oss.qualcomm.com>
49 lines
1.6 KiB
BlitzBasic
49 lines
1.6 KiB
BlitzBasic
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 = "19868984dc4dc697af6a86d65ab32a1f19a43ea4"
|
|
SRC_URI = "git://github.com/OpenSC/OpenSC;branch=master;protocol=https"
|
|
|
|
CVE_STATUS[CVE-2024-8443] = "fixed-version: this is fixed since 0.26.0"
|
|
|
|
|
|
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 \
|
|
${datadir}/p11-kit/modules/opensc.module \
|
|
"
|
|
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"
|