libgpgme: new package

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

Signed-off-by: Philipp Claves <claves@budelmann-elektronik.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Philipp Claves 2013-03-01 14:38:28 +01:00 committed by Thomas Petazzoni
parent fc8b560d8a
commit 61861a2ffb
3 changed files with 35 additions and 0 deletions

View File

@ -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"

View File

@ -0,0 +1,11 @@
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/

View File

@ -0,0 +1,23 @@
################################################################################
#
# 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))