diff options
author | Qian Lei <qianl.fnst@cn.fujitsu.com> | 2014-12-10 15:38:37 +0800 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-12-17 12:55:40 +0100 |
commit | 1e9d3afe66d9e99904f9ce2730c33bdf47060499 (patch) | |
tree | 2d00bbeb7a742ee0762cae15b31892048cf11c76 /meta-oe/recipes-support/libp11 | |
parent | 2c3eaf4bab9867b8cdedd55bad7cb64c3d8ae3b5 (diff) | |
download | meta-openembedded-1e9d3afe66d9e99904f9ce2730c33bdf47060499.tar.gz |
libp11: Add new recipe
libp11 is a library implementing a small layer on top of PKCS
make using PKCS
Signed-off-by: Qian Lei <qianl.fnst@cn.fujitsu.com>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-oe/recipes-support/libp11')
-rw-r--r-- | meta-oe/recipes-support/libp11/libp11_0.2.8.bb | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/meta-oe/recipes-support/libp11/libp11_0.2.8.bb b/meta-oe/recipes-support/libp11/libp11_0.2.8.bb new file mode 100644 index 000000000..5801484c2 --- /dev/null +++ b/meta-oe/recipes-support/libp11/libp11_0.2.8.bb | |||
@@ -0,0 +1,23 @@ | |||
1 | SUMMARY = "Library for using PKCS" | ||
2 | DESCRIPTION = "\ | ||
3 | Libp11 is a library implementing a small layer on top of PKCS \ | ||
4 | make using PKCS" | ||
5 | HOMEPAGE = "http://www.opensc-project.org/libp11" | ||
6 | SECTION = "Development/Libraries" | ||
7 | LICENSE = "LGPLv2+" | ||
8 | LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29" | ||
9 | DEPENDS = "libtool openssl" | ||
10 | |||
11 | SRC_URI = "git://github.com/OpenSC/libp11.git" | ||
12 | SRCREV = "7d56d89fcad6440d108bbbccfb1ebd958e7eb740" | ||
13 | |||
14 | S = "${WORKDIR}/git" | ||
15 | |||
16 | inherit autotools pkgconfig | ||
17 | |||
18 | EXTRA_OECONF = "--disable-static" | ||
19 | |||
20 | do_install_append () { | ||
21 | rm -rf ${D}${libdir}/*.la | ||
22 | rm -rf ${D}${docdir}/${BPN} | ||
23 | } | ||