mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-18 20:47:55 +00:00
e3519f2ecd
* gpg2: change gpg2 toolstack to gpg2 2.21 LTS * remove additional gpg2 unneeded configure options across gpg2 toolstack dependencies
24 lines
687 B
Plaintext
24 lines
687 B
Plaintext
modules-$(CONFIG_GPG2) += libassuan
|
|
libassuan_version := 2.5.3
|
|
libassuan_dir := libassuan-$(libassuan_version)
|
|
libassuan_tar := libassuan-$(libassuan_version).tar.bz2
|
|
libassuan_url := https://gnupg.org/ftp/gcrypt/libassuan/$(libassuan_tar)
|
|
libassuan_hash := 91bcb0403866b4e7c4bc1cc52ed4c364a9b5414b3994f718c70303f7f765e702
|
|
|
|
libassuan_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host x86_64-linux-musl \
|
|
--prefix "/" \
|
|
--disable-static \
|
|
--disable-debug \
|
|
--with-gpg-error-prefix="$(INSTALL)" \
|
|
|
|
libassuan_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libassuan_libraries := src/.libs/libassuan.so.0
|
|
|
|
libassuan_depends := libgpg-error $(musl_dep)
|