summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/opensc/opensc_0.20.1.bb
diff options
context:
space:
mode:
authorZang Ruochen <zangrc.fnst@cn.fujitsu.com>2020-12-04 10:42:52 +0800
committerKhem Raj <raj.khem@gmail.com>2020-12-03 22:32:56 -0800
commit1df71a454c961681854475dbc3f3dd13117d6a17 (patch)
treefd9414e9e2b89da5ac31e67642c6075a9fec9118 /meta-oe/recipes-support/opensc/opensc_0.20.1.bb
parentdf24d95793631c7e86fc670ebcc63734392e93d9 (diff)
downloadmeta-openembedded-1df71a454c961681854475dbc3f3dd13117d6a17.tar.gz
opensc: upgrade 0.20.0 -> 0.20.1
-License-Update: The address is updated as follows You should have received a copy of the GNU Lesser General Public License along with this library; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Signed-off-by: Zang Ruochen <zangrc.fnst@cn.fujitsu.com> Signed-off-by: Khem Raj <raj.khem@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/opensc/opensc_0.20.1.bb')
-rw-r--r--meta-oe/recipes-support/opensc/opensc_0.20.1.bb48
1 files changed, 48 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/opensc/opensc_0.20.1.bb b/meta-oe/recipes-support/opensc/opensc_0.20.1.bb
new file mode 100644
index 0000000000..2fbf60c14a
--- /dev/null
+++ b/meta-oe/recipes-support/opensc/opensc_0.20.1.bb
@@ -0,0 +1,48 @@
1SUMMARY = "Smart card library and applications"
2DESCRIPTION = "OpenSC is a tool for accessing smart card devices. Basic\
3functionality (e.g. SELECT FILE, READ BINARY) should work on any ISO\
47816-4 compatible smart card. Encryption and decryption using private\
5keys on the smart card is possible with PKCS\
6such as the FINEID (Finnish Electronic IDentity) card. Swedish Posten\
7eID cards have also been confirmed to work."
8
9HOMEPAGE = "http://www.opensc-project.org/opensc/"
10SECTION = "System Environment/Libraries"
11LICENSE = "LGPLv2+"
12LIC_FILES_CHKSUM = "file://COPYING;md5=cb8aedd3bced19bd8026d96a8b6876d7"
13
14#v0.21.0
15SRCREV = "30180986a08cf71fe4af4b50251a8bb5b1ab95af"
16SRC_URI = "git://github.com/OpenSC/OpenSC \
17 "
18DEPENDS = "virtual/libiconv openssl"
19
20S = "${WORKDIR}/git"
21inherit autotools pkgconfig bash-completion
22
23EXTRA_OECONF = " \
24 --disable-static \
25 --disable-ctapi \
26 --disable-doc \
27"
28EXTRA_OEMAKE = "DESTDIR=${D}"
29
30PACKAGECONFIG ??= "pcsc"
31
32PACKAGECONFIG[openct] = "--enable-openct,--disable-openct,openct"
33PACKAGECONFIG[pcsc] = "--enable-pcsc,--disable-pcsc,pcsc-lite,pcsc-lite pcsc-lite-lib"
34
35RDEPENDS_${PN} = "readline"
36
37FILES_${PN} += "\
38 ${libdir}/opensc-pkcs11.so \
39 ${libdir}/onepin-opensc-pkcs11.so \
40 ${libdir}/pkcs11-spy.so \
41"
42FILES_${PN}-dev += "\
43 ${libdir}/pkcs11/opensc-pkcs11.so \
44 ${libdir}/pkcs11/onepin-opensc-pkcs11.so \
45 ${libdir}/pkcs11/pkcs11-spy.so \
46"
47
48BBCLASSEXTEND = "native"