summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/nettle
diff options
context:
space:
mode:
authorValentin Popa <valentin.popa@intel.com>2014-04-28 17:28:19 +0300
committerRichard Purdie <richard.purdie@linuxfoundation.org>2014-05-06 17:59:16 +0100
commit220c7e091de413da8846e0b4dd8e1ccc03de77bc (patch)
treea61e79eb61e3ebc57b66495ebd73eabb13d29678 /meta/recipes-support/nettle
parent08a9594e630a479f8842c570c30cdac6963a0313 (diff)
downloadpoky-220c7e091de413da8846e0b4dd8e1ccc03de77bc.tar.gz
nettle: add nettle to oe-core
Newer versions of gnutls depends on nettle. (From OE-Core rev: e0e5eaee72e49c01e76d56cd03fbfb3e20febbb0) Signed-off-by: Valentin Popa <valentin.popa@intel.com> Signed-off-by: Saul Wold <sgw@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/recipes-support/nettle')
-rw-r--r--meta/recipes-support/nettle/nettle_2.7.1.bb24
1 files changed, 24 insertions, 0 deletions
diff --git a/meta/recipes-support/nettle/nettle_2.7.1.bb b/meta/recipes-support/nettle/nettle_2.7.1.bb
new file mode 100644
index 0000000000..87f1639a8a
--- /dev/null
+++ b/meta/recipes-support/nettle/nettle_2.7.1.bb
@@ -0,0 +1,24 @@
1SUMMARY = "A low level cryptographic library"
2HOMEPAGE = "http://www.lysator.liu.se/~nisse/nettle/"
3SECTION = "libs"
4LICENSE = "LGPLv2.1 & GPLv2"
5LIC_FILES_CHKSUM = "file://COPYING.LIB;md5=2d5025d4aa3495befef8f17206a5b0a1 \
6 file://serpent-decrypt.c;beginline=53;endline=67;md5=bcfd4745d53ca57f82907089898e390d \
7 file://serpent-set-key.c;beginline=56;endline=70;md5=bcfd4745d53ca57f82907089898e390d"
8
9DEPENDS += "gmp"
10
11SRC_URI = "http://www.lysator.liu.se/~nisse/archive/${BP}.tar.gz"
12
13SRC_URI[md5sum] = "003d5147911317931dd453520eb234a5"
14SRC_URI[sha256sum] = "bc71ebd43435537d767799e414fce88e521b7278d48c860651216e1fc6555b40"
15
16do_configure_prepend() {
17 if [ ! -e ${S}/acinclude.m4 -a -e ${S}/aclocal.m4 ]; then
18 cp ${S}/aclocal.m4 ${S}/acinclude.m4
19 fi
20}
21
22inherit autotools
23
24BBCLASSEXTEND = "native"