2013-03-01 14:38:28 +01:00
|
|
|
################################################################################
|
|
|
|
#
|
|
|
|
# libgpgme
|
|
|
|
#
|
|
|
|
################################################################################
|
|
|
|
|
2014-12-15 13:57:20 +01:00
|
|
|
LIBGPGME_VERSION = 1.5.3
|
2014-07-31 10:46:58 +02:00
|
|
|
LIBGPGME_SITE = ftp://ftp.gnupg.org/gcrypt/gpgme
|
2013-03-01 14:38:28 +01:00
|
|
|
LIBGPGME_SOURCE = gpgme-$(LIBGPGME_VERSION).tar.bz2
|
|
|
|
LIBGPGME_LICENSE = LGPLv2.1+
|
|
|
|
LIBGPGME_LICENSE_FILES = COPYING.LESSER
|
|
|
|
LIBGPGME_INSTALL_STAGING = YES
|
2013-07-31 20:59:46 +02:00
|
|
|
LIBGPGME_DEPENDENCIES = libassuan libgpg-error
|
2013-03-01 14:38:28 +01:00
|
|
|
|
|
|
|
# libgpgme, needs to know the gpg binary path on the target.
|
2014-09-27 21:32:44 +02:00
|
|
|
LIBGPGME_CONF_OPTS = --with-gpg=/usr/bin/gpg \
|
2013-03-01 14:38:28 +01:00
|
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr \
|
|
|
|
--with-libassuan-prefix=$(STAGING_DIR)/usr \
|
2014-07-12 15:08:01 +02:00
|
|
|
--disable-gpgsm-test \
|
|
|
|
--disable-gpgconf-test \
|
|
|
|
--disable-g13-test \
|
|
|
|
--disable-gpg-test
|
2013-07-31 20:59:46 +02:00
|
|
|
|
|
|
|
# Handle argp-standalone or it errors out during build
|
|
|
|
ifeq ($(BR2_PACKAGE_ARGP_STANDALONE)$(BR2_TOOLCHAIN_USES_UCLIBC),yy)
|
|
|
|
LIBGPGME_CONF_ENV += LIBS="-largp"
|
|
|
|
LIBGPGME_DEPENDENCIES += argp-standalone
|
|
|
|
endif
|
2013-03-01 14:38:28 +01:00
|
|
|
|
|
|
|
$(eval $(autotools-package))
|