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>
24 lines
641 B
Plaintext
24 lines
641 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 $(MUSL_ARCH)-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)
|