diff options
author | Eduardo Silva <eduardo@monkey.io> | 2014-10-03 07:51:57 -0600 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2014-10-06 01:07:52 +0200 |
commit | bde313a10573f7894143dd381b8aa5432711d481 (patch) | |
tree | 444b4af18fb3cfab6b3fdae29db5d63e3ab113ce /meta-networking/recipes-connectivity | |
parent | 0186f9817848332a43016669e848d2696dacc7da (diff) | |
download | meta-openembedded-bde313a10573f7894143dd381b8aa5432711d481.tar.gz |
PolarSSL: new recipe for polarssl v1.3.8
PolarSSL is a lightweight crypto and SSL/TLS library with a strong
focus on embedded systems.
Signed-off-by: Eduardo Silva <eduardo@monkey.io>
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'meta-networking/recipes-connectivity')
-rw-r--r-- | meta-networking/recipes-connectivity/polarssl/polarssl_1.3.8.bb | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/meta-networking/recipes-connectivity/polarssl/polarssl_1.3.8.bb b/meta-networking/recipes-connectivity/polarssl/polarssl_1.3.8.bb new file mode 100644 index 000000000..d05f4163a --- /dev/null +++ b/meta-networking/recipes-connectivity/polarssl/polarssl_1.3.8.bb | |||
@@ -0,0 +1,22 @@ | |||
1 | SUMMARY = "Lightweight crypto and SSL/TLS library" | ||
2 | DESCRIPTION = "PolarSSL is a fork of the abandonned project XySSL. It \ | ||
3 | is a lean crypto library providing SSL and TLS support \ | ||
4 | in your programs." | ||
5 | |||
6 | HOMEPAGE = "https://polarssl.org" | ||
7 | BUGTRACKER = "https://github.com/polarssl/polarssl/issues" | ||
8 | |||
9 | LICENSE = "GPLv2" | ||
10 | LIC_FILES_CHKSUM = "file://LICENSE;md5=751419260aa954499f7abaabaa882bbe" | ||
11 | |||
12 | SECTION = "net" | ||
13 | |||
14 | SRC_URI = "https://polarssl.org/download/polarssl-${PV}-gpl.tgz" | ||
15 | |||
16 | SRC_URI[md5sum] = "d1a2b4f21727e888f143414d2e3144e6" | ||
17 | SRC_URI[sha256sum] = "318171db41335cacbb5b0047c94f1faf91442ab70a223b5223436703c9406ff1" | ||
18 | |||
19 | RDEPENDS_${PN} += "libcrypto" | ||
20 | EXTRA_OECMAKE = "-DUSE_SHARED_POLARSSL_LIBRARY=on" | ||
21 | |||
22 | inherit cmake | ||