diff options
author | Werner Koch <[email protected]> | 2016-02-08 18:44:06 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2016-02-08 18:44:06 +0000 |
commit | 1e6c5a70b3b51f81d2fc1289129f6c3e1920ebcc (patch) | |
tree | 1f07122a86a66ff7ee90eb852e2813037808c32f /Makefile.am | |
parent | w32: Confirm the 639-1 code for Venda is "ve" (diff) | |
download | libgpg-error-1e6c5a70b3b51f81d2fc1289129f6c3e1920ebcc.tar.gz libgpg-error-1e6c5a70b3b51f81d2fc1289129f6c3e1920ebcc.zip |
build: Create an SWDB file during "make distcheck"
* Makefile.am (distcheck-hook): New.
--
The SWDB file is used to update the swdb.mac file from the
gnupg-doc repo which is the source for
https://gnupg.org/swdb.lst
https://gnupg.org/swdb.lst.sig
Signed-off-by: Werner Koch <[email protected]>
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index 4f9f094..baeba14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -47,6 +47,20 @@ dist-hook: gen-ChangeLog $(top_srcdir)/libgpg-error.spec.in > $(distdir)/libgpg-error.spec @set -e; echo "$(VERSION)" > $(distdir)/VERSION +distcheck-hook: + set -e; ( \ + pref="#+macro: $$(echo $(PACKAGE_NAME)|tr '-' '_')_" ;\ + reldate="$$(date -u +%Y-%m-%d)" ;\ + echo "$${pref}ver $(PACKAGE_VERSION)" ;\ + echo "$${pref}date $${reldate}" ;\ + list='$(DIST_ARCHIVES)'; for i in $$list; do \ + case "$$i" in *.tar.bz2) \ + echo "$${pref}size $$(wc -c <$$i|awk '{print int($$1/1024)}')k" ;\ + echo "$${pref}sha1 $$(sha1sum <$$i|cut -d' ' -f1)" ;\ + echo "$${pref}sha2 $$(sha256sum <$$i|cut -d' ' -f1)" ;;\ + esac;\ + done ) | tee $(distdir).swdb + gen_start_date = 2011-12-01T00:00:00 .PHONY: gen-ChangeLog |