2acbf5f167
Signed-off-by: Francois Perrad <francois.perrad@gadz.org>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
(cherry picked from commit 439525ced9
)
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
23 lines
824 B
Makefile
23 lines
824 B
Makefile
################################################################################
|
|
#
|
|
# libassuan
|
|
#
|
|
################################################################################
|
|
|
|
LIBASSUAN_VERSION = 2.5.7
|
|
LIBASSUAN_SITE = https://gnupg.org/ftp/gcrypt/libassuan
|
|
LIBASSUAN_SOURCE = libassuan-$(LIBASSUAN_VERSION).tar.bz2
|
|
LIBASSUAN_LICENSE = LGPL-2.1+ (library), GPL-3.0 (tests, doc)
|
|
LIBASSUAN_LICENSE_FILES = COPYING.LIB COPYING
|
|
LIBASSUAN_INSTALL_STAGING = YES
|
|
LIBASSUAN_DEPENDENCIES = libgpg-error
|
|
LIBASSUAN_CONF_OPTS = \
|
|
--with-gpg-error-prefix=$(STAGING_DIR)/usr
|
|
LIBASSUAN_CONFIG_SCRIPTS = libassuan-config
|
|
|
|
# Force the path to "gpgrt-config" (from the libgpg-error package) to
|
|
# avoid using the one on host, if present.
|
|
LIBASSUAN_CONF_ENV += GPGRT_CONFIG=$(STAGING_DIR)/usr/bin/gpgrt-config
|
|
|
|
$(eval $(autotools-package))
|