Commit 266d5024 authored by Philipp Claves's avatar Philipp Claves Committed by Thomas Petazzoni
Browse files

libassuan: new package



[Thomas: bump version, adjust license informations, add
--with-gpg-error-prefix option.]

Signed-off-by: default avatarPhilipp Claves <claves@budelmann-elektronik.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent 43cea81d
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -418,6 +418,7 @@ source "package/cryptodev/Config.in"
source "package/gnutls/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
source "package/libassuan/Config.in"
source "package/libmcrypt/Config.in"
source "package/libmhash/Config.in"
source "package/libnss/Config.in"
+12 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBASSUAN
	bool "libassuan"
	select BR2_PACKAGE_LIBGPG_ERROR
	help
	  Libassuan is a small library implementing the so-called
	  Assuan protocol.

	  This protocol is used for IPC between most newer GnuPG
	  components.  Both, server and client side functions are
	  provided.

	  http://www.gnupg.org/related_software/libassuan/
+17 −0
Original line number Diff line number Diff line
################################################################################
#
# libassuan
#
################################################################################

LIBASSUAN_VERSION = 2.1.1
LIBASSUAN_SITE = ftp://ftp.gnupg.org/gcrypt/libassuan/
LIBASSUAN_SOURCE = libassuan-$(LIBASSUAN_VERSION).tar.bz2
LIBASSUAN_LICENSE = LGPLv2.1+
LIBASSUAN_LICENSE_FILES = COPYING.LIB
LIBASSUAN_INSTALL_STAGING = YES
LIBASSUAN_DEPENDENCIES = libgpg-error
LIBASSUAN_CONF_OPT = \
	--with-gpg-error-prefix=$(STAGING_DIR)/usr

$(eval $(autotools-package))