mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
e3519f2ecd
* gpg2: change gpg2 toolstack to gpg2 2.21 LTS * remove additional gpg2 unneeded configure options across gpg2 toolstack dependencies
23 lines
634 B
Plaintext
23 lines
634 B
Plaintext
modules-$(CONFIG_GPG2) += libksba
|
|
libksba_version := 1.4.0
|
|
libksba_dir := libksba-$(libksba_version)
|
|
libksba_tar := libksba-$(libksba_version).tar.bz2
|
|
libksba_url := https://gnupg.org/ftp/gcrypt/libksba/$(libksba_tar)
|
|
libksba_hash := bfe6a8e91ff0f54d8a329514db406667000cb207238eded49b599761bfca41b6
|
|
|
|
libksba_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--host x86_64-linux-musl \
|
|
--prefix "/" \
|
|
--disable-static \
|
|
--with-gpg-error-prefix="$(INSTALL)" \
|
|
|
|
libksba_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libksba_libraries := src/.libs/libksba.so.8
|
|
|
|
libksba_depends := libgpg-error $(musl_dep)
|