genode/repos/libports/lib/mk/libgpg-error.mk
Norman Feske 5b6bd8459f Signature checking tool based on GnuPG
The new 'verify' component facilitates the code of GnuPG to verify
detached OpenPGP signatures against public keys.

Since GnuPG depends on libgcrypt and libgpg-error, the patch adds these
libraries to the libports repository.

Fixes #2640
2018-02-09 13:34:13 +01:00

16 lines
465 B
Makefile

LIBGPG_ERROR_DIR := $(call select_from_ports,libgcrypt)/src/lib/libgpg-error
LIBGPG_ERROR_SRC_DIR := $(LIBGPG_ERROR_DIR)/src
LIBS := libc
SRC_C := visibility.c code-from-errno.c init.c estream.c estream-printf.c \
strerror.c code-to-errno.c posix-lock.c posix-thread.c
INC_DIR += $(REP_DIR)/src/lib/libgpg-error $(LIBGPG_ERROR_SRC_DIR)
CC_OPT += -DHAVE_CONFIG_H
include $(REP_DIR)/lib/import/import-libgcrypt.mk
vpath %.c $(LIBGPG_ERROR_SRC_DIR)