diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2012-12-28 10:01:08 +0000 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2012-12-28 21:36:43 +0100 |
commit | ac4e3c02d43708ed1263186b52a791c615d67cce (patch) | |
tree | 8fb429e9cd62f90879aa282bfd2a4d3fda925dfb | |
parent | 4848386446b937d4d0d9d3e9489932ca3fcb1003 (diff) | |
download | buildroot-novena-ac4e3c02d43708ed1263186b52a791c615d67cce.tar.gz buildroot-novena-ac4e3c02d43708ed1263186b52a791c615d67cce.zip |
nettle: add new package
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
-rw-r--r-- | package/Config.in | 1 | ||||
-rw-r--r-- | package/nettle/Config.in | 9 | ||||
-rw-r--r-- | package/nettle/nettle.mk | 12 |
3 files changed, 22 insertions, 0 deletions
diff --git a/package/Config.in b/package/Config.in index 3d556b2b9..6c82bab85 100644 --- a/package/Config.in +++ b/package/Config.in @@ -363,6 +363,7 @@ source "package/gnutls/Config.in" source "package/libgcrypt/Config.in" source "package/libgpg-error/Config.in" source "package/libnss/Config.in" +source "package/nettle/Config.in" source "package/ocf-linux/Config.in" source "package/openssl/Config.in" source "package/polarssl/Config.in" diff --git a/package/nettle/Config.in b/package/nettle/Config.in new file mode 100644 index 000000000..55776216e --- /dev/null +++ b/package/nettle/Config.in @@ -0,0 +1,9 @@ +config BR2_PACKAGE_NETTLE + bool "nettle" + select BR2_PACKAGE_GMP + help + Nettle is a cryptographic library that is designed to fit easily + in more or less any context: In crypto toolkits for object-oriented + languages, in applications like LSH or GNUPG, or even in kernel space + + http://www.lysator.liu.se/~nisse/nettle/ diff --git a/package/nettle/nettle.mk b/package/nettle/nettle.mk new file mode 100644 index 000000000..ef7640a23 --- /dev/null +++ b/package/nettle/nettle.mk @@ -0,0 +1,12 @@ +NETTLE_VERSION = 2.5 +NETTLE_SITE = http://www.lysator.liu.se/~nisse/archive +NETTLE_DEPENDENCIES = gmp +NETTLE_INSTALL_STAGING = YES + +define NETTLE_DITCH_DEBUGGING_CFLAGS + $(SED) '/CFLAGS/ s/ -ggdb3//' $(@D)/configure +endef + +NETTLE_POST_EXTRACT_HOOKS += NETTLE_DITCH_DEBUGGING_CFLAGS + +$(eval $(autotools-package)) |