]> gitweb.michael.orlitzky.com - postfix-logwatch.git/commitdiff
Makefile: release as tar.xz and don't include HTML docs by default. 1.40.04
authorMichael Orlitzky <michael@orlitzky.com>
Sun, 1 Aug 2021 13:04:11 +0000 (09:04 -0400)
committerMichael Orlitzky <michael@orlitzky.com>
Sun, 1 Aug 2021 13:04:11 +0000 (09:04 -0400)
Since this is mainly a server utility, the HTML page is a bit
redundant because we already include the man page from which it is
built. Anyone is capable of running man2html to turn a man page into a
web page if they so desire.

We also change the release tarball to "tar.xz" format with lzma
compression, because that's what all the cool kids are doing.

Makefile

index 9b317acf6e5b561138c117c09fdf9af8ea9622d4..b9c667f68592e969dfe81fb6137a598f1f0666fe 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -5,8 +5,7 @@ src = $(program) \
       $(program).conf \
       $(program).conf-topn \
       $(program).1 \
-      $(program).1.html \
-      Changes Bugs Makefile README LICENSE
+      Changes Bugs README LICENSE
 
 prefix_logwatch = /etc/logwatch
 prefix_standalone = /usr/local
@@ -52,13 +51,12 @@ uninstall-all: uninstall-logwatch uninstall-standalone
 
 PKGDIR = /tmp/$(program)-package
 
-release: program htmlpage
+.PHONY: release
+release:
        vers=`egrep 'Version[ ]*=' $(program) | sed "s/.*'\(.*\)';/\1/"` ; \
        echo Preparing version $$vers; \
        rel=$(program)-$$vers ; \
-       tar -czvf $${rel}.tgz --group=0 --owner=0 --mode=644 --transform=s",^,$${rel}/," $(src) ; \
-       md5sum $${rel}.tgz  > $${rel}.tgz.md5 ; \
-       chmod 644 $${rel}.tgz  $${rel}.tgz.md5
+       tar -cJf $${rel}.tar.xz --transform=s",^,$${rel}/," $(src);
 
-htmlpage:
-       groff -m mandoc -T ascii $(program).1 | man2html -t 'Man page: $(program)(1)' >| $(program).1.html;
+$(program).1.html:
+       groff -m mandoc -T ascii $(program).1 | man2html -t 'Man page: $(program)(1)' >| $@;