/usr/share/doc/jetring/examples/Makefile is in jetring 0.20.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 | export JETRING_SIGN=$(shell if [ -e admins.gpg ]; then echo admins.gpg; else echo "** Warning: Generating keyring without checking signatures!" >&2 ; fi)
export PATH:=..:$(PATH)
build: admins.gpg debian-maintainers.gpg
debian-maintainers.gpg: debian-maintainers/index
jetring-build -I $@ debian-maintainers
admins.gpg: admins/index
jetring-build -I $@ admins
clean:
rm -f debian-maintainers.gpg* admins.gpg.*
|