libgrapheme

unicode string library
git clone git://git.suckless.org/libgrapheme
Log | Files | Refs | README | LICENSE

commit 767e6c55ba45e06685521bdfdf61f14a782d5f2b
parent 5367410c209c168edd9784a524a64e425770cc1e
Author: Laslo Hunhold <dev@frign.de>
Date:   Sat, 25 Dec 2021 22:33:56 +0100

Automatically gzip tarball

Signed-off-by: Laslo Hunhold <dev@frign.de>

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -135,7 +135,7 @@ dist: cp $(MAN3) $(MAN7) libgrapheme-$(VERSION)/man cp $(SRC:=.c) src/util.h libgrapheme-$(VERSION)/src cp $(TEST:=.c) test/util.c test/util.h libgrapheme-$(VERSION)/test - tar -cf libgrapheme-$(VERSION).tar libgrapheme-$(VERSION) + tar -cf - libgrapheme-$(VERSION) | gzip -c > libgrapheme-$(VERSION).tar.gz rm -rf libgrapheme-$(VERSION) .PHONY: all test install uninstall clean clean-data dist