Commit 9c6106f1 authored by Daniel Mack's avatar Daniel Mack Committed by Peter Korsgaard
Browse files

package: add gnutls



[Peter: move to crypto section]
Signed-off-by: default avatarDaniel Mack <zonque@gmail.com>
Signed-off-by: default avatarPeter Korsgaard <jacmet@sunsite.dk>
parent 50b62197
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -248,6 +248,7 @@ endmenu

menu "Crypto"
source "package/beecrypt/Config.in"
source "package/gnutls/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
source "package/libnss/Config.in"
+8 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_GNUTLS
	bool "gnutls"
	select BR2_PACKAGE_LIBGCRYPT
	help
	  GnuTLS is a secure communications library implementing the SSL
	  and TLS protocols and technologies around them.

	  http://www.gnu.org/software/gnutls/gnutls.html
+14 −0
Original line number Diff line number Diff line
#############################################################
#
# gnutls
#
#############################################################

GNUTLS_VERSION = 2.8.6
GNUTLS_SOURCE = gnutls-$(GNUTLS_VERSION).tar.bz2
GNUTLS_SITE = http://ftp.gnu.org/gnu/gnutls/
GNUTLS_DEPENDENCIES = libgcrypt
GNUTLS_CONF_OPT += --without-libgcrypt-prefix
GNUTLS_INSTALL_STAGING = YES

$(eval $(call AUTOTARGETS,package,gnutls))