Skip to content

Commit

Permalink
chore(rules): Boost ZSTD compression level closer to XZ
Browse files Browse the repository at this point in the history
  • Loading branch information
alerque committed Sep 20, 2024
1 parent 9fe7318 commit 6a0d1ee
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion rules/rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -370,9 +370,12 @@ $(DISTDIR):
.PHONY: dist
dist: $(DISTDIR).zip $(DISTDIR).tar.zst

$(DISTDIR).tar.bz2 $(DISTDIR).tar.gz $(DISTDIR).tar.xz $(DISTDIR).zip $(DISTDIR).tar.zst: install-dist
$(DISTDIR).tar.bz2 $(DISTDIR).tar.gz $(DISTDIR).tar.xz $(DISTDIR).zip: install-dist
bsdtar -acf $@ $(DISTDIR)

$(DISTDIR).tar.zst: install-dist
bsdtar --zstd --options zstd:compression-level=19 -cf $@ $(DISTDIR)

_E = md txt markdown
dist_doc_DATA ?= $(wildcard $(foreach B,readme README contributors CONTRIBUTORS fontlog FONTLOG,$(foreach E,$(_E),$(B).$(E))))
dist_license_DATA ?= $(wildcard $(foreach B,ofl OFL ofl-faq OFL-FAQ license LICENSE copying COPYING copyingn-ofl COPYING-OFL authors AUTHORS,$(foreach E,$(_E),$(B).$(E))))
Expand Down

0 comments on commit 6a0d1ee

Please sign in to comment.