diff options
-rw-r--r-- | meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb new file mode 100644 index 0000000000..d665242bb1 --- /dev/null +++ b/meta-oe/recipes-support/engine-pkcs11/engine-pkcs11_0.1.8.bb | |||
@@ -0,0 +1,29 @@ | |||
1 | SUMMARY = "A PKCS" | ||
2 | DESCRIPTION = "\ | ||
3 | Engine_pkcs11 is an implementation of an engine for OpenSSL. It can be \ | ||
4 | loaded using code, config file or command line and will pass any function \ | ||
5 | call by openssl to a PKCS cards and software for using smart cards in PKCS" | ||
6 | HOMEPAGE = "https://github.com/OpenSC/engine_pkcs11" | ||
7 | SECTION = "Development/Libraries" | ||
8 | LICENSE = "LGPLv2.1+" | ||
9 | LIC_FILES_CHKSUM = "file://doc/README;md5=d2ab6bf8854463fa6bf98f5bb6dfc47c" | ||
10 | DEPENDS = "openssl libp11" | ||
11 | |||
12 | SRC_URI = "git://github.com/OpenSC/engine_pkcs11.git" | ||
13 | SRCREV = "bb775c32dba8cc4b4381a53da7ab5d7b22b7921d" | ||
14 | |||
15 | S = "${WORKDIR}/git" | ||
16 | |||
17 | inherit autotools pkgconfig | ||
18 | |||
19 | EXTRA_OECONF = "\ | ||
20 | --disable-static \ | ||
21 | --libdir ${libdir}/openssl \ | ||
22 | " | ||
23 | |||
24 | do_install_append () { | ||
25 | rm -f ${D}${libdir}/openssl/engines/engine_pkcs11.la | ||
26 | } | ||
27 | |||
28 | FILES_${PN} += "/usr/lib/openssl/engines/engine_pkcs11.so*" | ||
29 | FILES_${PN}-dbg += "/usr/lib/openssl/engines/.debug/*" | ||