libksba: new package

[Thomas: fix license informations.]

Signed-off-by: Vicente Olivert Riera <Vincent.Riera@imgtec.com>
Reviewed-by: Markos Chandras <Markos.Chandras@imgtec.com>
Reviewed-by: Bernd Kuhls <bernd.kuhls@t-online.de>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
This commit is contained in:
Vicente Olivert Riera 2014-06-06 14:44:26 +01:00 committed by Thomas Petazzoni
parent 3eff8f16e3
commit fe70a288f1
3 changed files with 24 additions and 0 deletions

View file

@ -536,6 +536,7 @@ source "package/libassuan/Config.in"
source "package/libgcrypt/Config.in"
source "package/libgpg-error/Config.in"
source "package/libgpgme/Config.in"
source "package/libksba/Config.in"
source "package/libmcrypt/Config.in"
source "package/libmhash/Config.in"
source "package/libnss/Config.in"

View file

@ -0,0 +1,7 @@
config BR2_PACKAGE_LIBKSBA
bool "libksba"
select BR2_PACKAGE_LIBGPG_ERROR
help
CMS and X.509 library
https://www.gnupg.org/related_software/libksba/

View file

@ -0,0 +1,16 @@
################################################################################
#
# libksba
#
################################################################################
LIBKSBA_VERSION = 1.3.0
LIBKSBA_SOURCE = libksba-$(LIBKSBA_VERSION).tar.bz2
LIBKSBA_SITE = ftp://ftp.gnupg.org/gcrypt/libksba
LIBKSBA_LICENSE = LGPLv3+ or GPLv2+ (library, headers), GPLv3+ (manual, tests, build system)
LIBKSBA_LICENSE_FILES = AUTHORS COPYING COPYING.GPLv2 COPYING.GPLv3 COPYING.LGPLv3
LIBKSBA_INSTALL_STAGING = YES
LIBKSBA_DEPENDENCIES = libgpg-error
LIBKSBA_CONF_OPT = --with-gpg-error-prefix=$(STAGING_DIR)/usr
$(eval $(autotools-package))