From 636bc2c515452cce509f679eb3fdc0d6177144bc Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Thu, 5 Aug 2021 18:14:08 -0400 Subject: [PATCH] Makefile: release as tar.xz and don't include HTML docs by default. 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 | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index 054abc3..8f12319 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,6 @@ program_logwatch = amavis src = $(program) \ $(program).conf \ $(program).1 \ - $(program).1.html \ Changes Bugs Makefile README LICENSE prefix_logwatch = /etc/logwatch @@ -48,13 +47,12 @@ uninstall-standalone: uninstall-all: uninstall-logwatch uninstall-standalone -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; -- 2.43.2