initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
comment "gnupg2 needs a toolchain w/ threads and dynamic library support"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
|
||||
|
||||
config BR2_PACKAGE_GNUPG2
|
||||
bool "gnupg2"
|
||||
depends on BR2_PACKAGE_LIBGPG_ERROR_ARCH_SUPPORTS # libgpg-error
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS # libnpth
|
||||
depends on BR2_USE_MMU # libassuan, libnpth
|
||||
depends on !BR2_STATIC_LIBS
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_LIBGPG_ERROR
|
||||
select BR2_PACKAGE_LIBGCRYPT
|
||||
select BR2_PACKAGE_LIBASSUAN
|
||||
select BR2_PACKAGE_LIBKSBA
|
||||
select BR2_PACKAGE_LIBNPTH
|
||||
select BR2_PACKAGE_LIBICONV if !BR2_ENABLE_LOCALE
|
||||
help
|
||||
GnuPG is the GNU project's complete and free implementation
|
||||
of the OpenPGP standard as defined by RFC4880. GnuPG allows
|
||||
to encrypt and sign your data and communication, features a
|
||||
versatile key management system as well as access modules
|
||||
for all kinds of public key directories. GnuPG, also known
|
||||
as GPG, is a command line tool with features for easy
|
||||
integration with other applications.
|
||||
|
||||
http://gnupg.org/
|
||||
|
||||
if BR2_PACKAGE_GNUPG2
|
||||
|
||||
config BR2_PACKAGE_GNUPG2_GPGV
|
||||
bool "gpgv"
|
||||
help
|
||||
gpgv is an OpenPGP signature verification tool.
|
||||
|
||||
This program is actually a stripped-down version of gpg
|
||||
which is only able to check signatures. It is somewhat
|
||||
smaller than the fully-blown gpg and uses a different (and
|
||||
simpler) way to check that the public keys used to make the
|
||||
signature are valid. There are no configuration files and
|
||||
only a few options are implemented.
|
||||
|
||||
endif
|
||||
@@ -0,0 +1,7 @@
|
||||
# From https://lists.gnupg.org/pipermail/gnupg-announce/2021q2/000460.html
|
||||
sha1 81684626720c91060ae9920936c768df9fc8b2f6 gnupg-2.2.32.tar.bz2
|
||||
# Calculated based on the hash above and signature
|
||||
# https://gnupg.org/ftp/gcrypt/gnupg/gnupg-2.2.32.tar.bz2.sig
|
||||
# using key 6DAA6E64A76D2840571B4902528897B826403ADA
|
||||
sha256 b2571b35f82c63e7d278aa6a1add0d73453dc14d3f0854be490c844fca7e0614 gnupg-2.2.32.tar.bz2
|
||||
sha256 bc2d6664f6276fa0a72d57633b3ae68dc7dcb677b71018bf08c8e93e509f1357 COPYING
|
||||
@@ -0,0 +1,68 @@
|
||||
################################################################################
|
||||
#
|
||||
# gnupg2
|
||||
#
|
||||
################################################################################
|
||||
|
||||
GNUPG2_VERSION = 2.2.32
|
||||
GNUPG2_SOURCE = gnupg-$(GNUPG2_VERSION).tar.bz2
|
||||
GNUPG2_SITE = https://gnupg.org/ftp/gcrypt/gnupg
|
||||
GNUPG2_LICENSE = GPL-3.0+
|
||||
GNUPG2_LICENSE_FILES = COPYING
|
||||
GNUPG2_CPE_ID_VENDOR = gnupg
|
||||
GNUPG2_CPE_ID_PRODUCT = gnupg
|
||||
GNUPG2_DEPENDENCIES = zlib libgpg-error libgcrypt libassuan libksba libnpth \
|
||||
$(if $(BR2_PACKAGE_LIBICONV),libiconv) host-pkgconf
|
||||
|
||||
GNUPG2_CONF_OPTS = \
|
||||
--disable-rpath --disable-regex \
|
||||
--with-libgpg-error-prefix=$(STAGING_DIR)/usr \
|
||||
--with-libgcrypt-prefix=$(STAGING_DIR)/usr \
|
||||
--with-libassuan-prefix=$(STAGING_DIR)/usr \
|
||||
--with-ksba-prefix=$(STAGING_DIR)/usr \
|
||||
--with-npth-prefix=$(STAGING_DIR)/usr
|
||||
|
||||
ifneq ($(BR2_PACKAGE_GNUPG2_GPGV),y)
|
||||
define GNUPG2_REMOVE_GPGV
|
||||
rm -f $(TARGET_DIR)/usr/bin/gpgv
|
||||
endef
|
||||
GNUPG2_POST_INSTALL_TARGET_HOOKS += GNUPG2_REMOVE_GPGV
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_BZIP2),y)
|
||||
GNUPG2_CONF_OPTS += --enable-bzip2 --with-bzip2=$(STAGING_DIR)
|
||||
GNUPG2_DEPENDENCIES += bzip2
|
||||
else
|
||||
GNUPG2_CONF_OPTS += --disable-bzip2
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
GNUPG2_CONF_OPTS += --enable-gnutls
|
||||
GNUPG2_DEPENDENCIES += gnutls
|
||||
else
|
||||
GNUPG2_CONF_OPTS += --disable-gnutls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBUSB),y)
|
||||
GNUPG2_CONF_ENV += CPPFLAGS="$(TARGET_CPPFLAGS) -I$(STAGING_DIR)/usr/include/libusb-1.0"
|
||||
GNUPG2_CONF_OPTS += --enable-ccid-driver
|
||||
GNUPG2_DEPENDENCIES += libusb
|
||||
else
|
||||
GNUPG2_CONF_OPTS += --disable-ccid-driver
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_READLINE),y)
|
||||
GNUPG2_CONF_OPTS += --with-readline=$(STAGING_DIR)
|
||||
GNUPG2_DEPENDENCIES += readline
|
||||
else
|
||||
GNUPG2_CONF_OPTS += --without-readline
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_SQLITE),y)
|
||||
GNUPG2_CONF_OPTS += --enable-sqlite
|
||||
GNUPG2_DEPENDENCIES += sqlite
|
||||
else
|
||||
GNUPG2_CONF_OPTS += --disable-sqlite
|
||||
endif
|
||||
|
||||
$(eval $(autotools-package))
|
||||
Reference in New Issue
Block a user