mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
f16e92792a
This prepares most of the modules to be build for it. Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
25 lines
693 B
Plaintext
25 lines
693 B
Plaintext
modules-$(CONFIG_GPG2) += libgcrypt
|
|
|
|
libgcrypt_version := 1.8.6
|
|
libgcrypt_dir := libgcrypt-$(libgcrypt_version)
|
|
libgcrypt_tar := libgcrypt-$(libgcrypt_version).tar.bz2
|
|
libgcrypt_url := https://gnupg.org/ftp/gcrypt/libgcrypt/$(libgcrypt_tar)
|
|
libgcrypt_hash := 0cba2700617b99fc33864a0c16b1fa7fdf9781d9ed3509f5d767178e5fd7b975
|
|
|
|
libgcrypt_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host=$(MUSL_ARCH)-linux-musl \
|
|
--prefix "/" \
|
|
--disable-static \
|
|
--with-gpg-error-prefix="$(INSTALL)" \
|
|
--disable-asm \
|
|
|
|
libgcrypt_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libgcrypt_libraries := src/.libs/libgcrypt.so.20
|
|
|
|
libgcrypt_depends := libgpg-error $(musl_dep)
|