mirror of
https://github.com/genodelabs/genode.git
synced 2025-01-01 03:26:45 +00:00
5b6bd8459f
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
15 lines
287 B
Makefile
15 lines
287 B
Makefile
content: src/app/verify src/app/gnupg LICENSE
|
|
|
|
GNUPG_SRC_DIR := $(call port_dir,$(REP_DIR)/ports/gnupg)/src/app/gnupg
|
|
|
|
src/app/verify:
|
|
$(mirror_from_rep_dir)
|
|
|
|
src/app/gnupg:
|
|
mkdir -p $@
|
|
cp -r $(addprefix $(GNUPG_SRC_DIR)/,g10 common kbx) $@
|
|
|
|
LICENSE:
|
|
cp $(GNUPG_SRC_DIR)/COPYING $@
|
|
|