summaryrefslogtreecommitdiffstats
path: root/meta-oe/recipes-support/libp11
diff options
context:
space:
mode:
authorQian Lei <qianl.fnst@cn.fujitsu.com>2014-12-10 15:38:37 +0800
committerMartin Jansa <Martin.Jansa@gmail.com>2014-12-17 12:55:40 +0100
commit1e9d3afe66d9e99904f9ce2730c33bdf47060499 (patch)
tree2d00bbeb7a742ee0762cae15b31892048cf11c76 /meta-oe/recipes-support/libp11
parent2c3eaf4bab9867b8cdedd55bad7cb64c3d8ae3b5 (diff)
downloadmeta-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.bb23
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 @@
1SUMMARY = "Library for using PKCS"
2DESCRIPTION = "\
3Libp11 is a library implementing a small layer on top of PKCS \
4make using PKCS"
5HOMEPAGE = "http://www.opensc-project.org/libp11"
6SECTION = "Development/Libraries"
7LICENSE = "LGPLv2+"
8LIC_FILES_CHKSUM = "file://COPYING;md5=fad9b3332be894bab9bc501572864b29"
9DEPENDS = "libtool openssl"
10
11SRC_URI = "git://github.com/OpenSC/libp11.git"
12SRCREV = "7d56d89fcad6440d108bbbccfb1ebd958e7eb740"
13
14S = "${WORKDIR}/git"
15
16inherit autotools pkgconfig
17
18EXTRA_OECONF = "--disable-static"
19
20do_install_append () {
21 rm -rf ${D}${libdir}/*.la
22 rm -rf ${D}${docdir}/${BPN}
23}