Commit 61861a2f authored by Philipp Claves's avatar Philipp Claves Committed by Thomas Petazzoni
Browse files

libgpgme: new package



[Thomas: bump version, add --with-gpg-error-prefix and
--with-libassuan-prefix options.]

Signed-off-by: default avatarPhilipp Claves <claves@budelmann-elektronik.com>
Signed-off-by: default avatarThomas Petazzoni <thomas.petazzoni@free-electrons.com>
parent fc8b560d
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/libgpgme/Config.in"
source "package/libassuan/Config.in"
source "package/libmcrypt/Config.in"
source "package/libmhash/Config.in"
+11 −0
Original line number Diff line number Diff line
config BR2_PACKAGE_LIBGPGME
	bool "libgpgme"
	#gnupg is not needed to build, but at runtime.
	select BR2_PACKAGE_GNUPG
	select BR2_PACKAGE_LIBGPG_ERROR
	select BR2_PACKAGE_LIBASSUAN
	help
	  GnuPG Made Easy (GPGME) is a library designed to make access
	  to GnuPG easier for applications.

	  http://www.gnupg.org/related_software/gpgme/
+23 −0
Original line number Diff line number Diff line
################################################################################
#
# libgpgme
#
################################################################################

LIBGPGME_VERSION = 1.4.2
LIBGPGME_SITE = ftp://ftp.gnupg.org/gcrypt/gpgme/
LIBGPGME_SOURCE = gpgme-$(LIBGPGME_VERSION).tar.bz2
LIBGPGME_LICENSE = LGPLv2.1+
LIBGPGME_LICENSE_FILES = COPYING.LESSER
LIBGPGME_INSTALL_STAGING = YES

# libgpgme, needs to know the gpg binary path on the target.
LIBGPGME_CONF_OPT = --with-gpg=/usr/bin/gpg \
	--with-gpg-error-prefix=$(STAGING_DIR)/usr \
	--with-libassuan-prefix=$(STAGING_DIR)/usr \
	--without-gpgsm \
	--without-gpgconf \
	--without-g13
LIBGPGME_DEPENDENCIES = libassuan libgpg-error

$(eval $(autotools-package))