mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-20 13:33:10 +00:00
f16e92792a
This prepares most of the modules to be build for it. Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com>
27 lines
748 B
Makefile
27 lines
748 B
Makefile
modules-$(CONFIG_GPG2) += libgpg-error
|
|
|
|
libgpg-error_version := 1.37
|
|
libgpg-error_dir := libgpg-error-$(libgpg-error_version)
|
|
libgpg-error_tar := libgpg-error-$(libgpg-error_version).tar.bz2
|
|
libgpg-error_url := https://gnupg.org/ftp/gcrypt/libgpg-error/$(libgpg-error_tar)
|
|
libgpg-error_hash := b32d6ff72a73cf79797f7f2d039e95e9c6f92f0c1450215410840ab62aea9763
|
|
|
|
libgpg-error_configure := ./configure \
|
|
$(CROSS_TOOLS) \
|
|
--prefix "/" \
|
|
--host=$(MUSL_ARCH)-linux-musl \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--disable-languages \
|
|
--disable-doc \
|
|
--disable-tests \
|
|
|
|
libgpg-error_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libgpg-error_libraries := src/.libs/libgpg-error.so.0
|
|
|
|
libgpg-error_depends := $(musl_dep)
|