You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
306 B
Makefile

trustedkeys.kbx:
cat *.asc | \
gpg --no-default-keyring --no-options --trust-model=always \
--keyring ${PWD}/trustedkeys.kbx \
--import -
list:
gpg --no-default-keyring --trust-model=always \
--keyring ${PWD}/trustedkeys.kbx \
--list-keys
clean:
rm trustedkeys.kbx
.PHONY: clean