mirror of
https://github.com/linuxboot/heads.git
synced 2024-12-19 04:57:55 +00:00
7cef74bb06
198.15 -> 277.69 kB
30 lines
805 B
Makefile
30 lines
805 B
Makefile
modules-$(CONFIG_GPG2) += libgpg-error
|
|
|
|
libgpg-error_version := 1.46
|
|
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 := b7e11a64246bbe5ef37748de43b245abd72cfcd53c9ae5e7fc5ca59f1c81268d
|
|
|
|
libgpg-error_configure := \
|
|
$(CROSS_TOOLS) \
|
|
CFLAGS="-Os" \
|
|
./configure \
|
|
--prefix "/" \
|
|
--host=$(MUSL_ARCH)-linux-musl \
|
|
--disable-static \
|
|
--disable-nls \
|
|
--disable-languages \
|
|
--disable-doc \
|
|
--disable-tests \
|
|
--enable-install-gpg-error-config \
|
|
|
|
libgpg-error_target := $(MAKE_JOBS) \
|
|
DESTDIR="$(INSTALL)" \
|
|
$(CROSS_TOOLS) \
|
|
install \
|
|
|
|
libgpg-error_libraries := src/.libs/libgpg-error.so.0
|
|
|
|
libgpg-error_depends := $(musl_dep)
|