4911a10a4e
XZ compresses significantly better than bzip2. Here are the compression ratios and execution times (using 4 cores in parallel) on my /var/run/current-system (3.1 GiB): bzip2: total compressed size 849.56 MiB, 30.8% [2m08] xz -6: total compressed size 641.84 MiB, 23.4% [6m53] xz -7: total compressed size 621.82 MiB, 22.6% [7m19] xz -8: total compressed size 599.33 MiB, 21.8% [7m18] xz -9: total compressed size 588.18 MiB, 21.4% [7m40] Note that compression takes much longer. More importantly, however, decompression is much faster: bzip2: 1m47.274s xz -6: 0m55.446s xz -7: 0m54.119s xz -8: 0m52.388s xz -9: 0m51.842s The only downside to using -9 is that decompression takes a fair amount (~65 MB) of memory.
38 lines
1.2 KiB
Makefile
38 lines
1.2 KiB
Makefile
%: %.in Makefile
|
|
sed \
|
|
-e "s^@abs_top_srcdir\@^$(abs_top_srcdir)^g" \
|
|
-e "s^@abs_top_builddir\@^$(abs_top_builddir)^g" \
|
|
-e "s^@extra1\@^$(extra1)^g" \
|
|
-e "s^@prefix\@^$(prefix)^g" \
|
|
-e "s^@bindir\@^$(bindir)^g" \
|
|
-e "s^@datadir\@^$(datadir)^g" \
|
|
-e "s^@sysconfdir\@^$(sysconfdir)^g" \
|
|
-e "s^@localstatedir\@^$(localstatedir)^g" \
|
|
-e "s^@datadir\@^$(datadir)^g" \
|
|
-e "s^@libdir\@^$(libdir)^g" \
|
|
-e "s^@libexecdir\@^$(libexecdir)^g" \
|
|
-e "s^@storedir\@^$(storedir)^g" \
|
|
-e "s^@system\@^$(system)^g" \
|
|
-e "s^@shell\@^$(bash)^g" \
|
|
-e "s^@curl\@^$(curl)^g" \
|
|
-e "s^@bzip2\@^$(bzip2)^g" \
|
|
-e "s^@xz\@^$(xz)^g" \
|
|
-e "s^@perl\@^$(perl)^g" \
|
|
-e "s^@perlFlags\@^$(perlFlags)^g" \
|
|
-e "s^@coreutils\@^$(coreutils)^g" \
|
|
-e "s^@sed\@^$(sed)^g" \
|
|
-e "s^@tar\@^$(tar)^g" \
|
|
-e "s^@gzip\@^$(gzip)^g" \
|
|
-e "s^@pv\@^$(pv)^g" \
|
|
-e "s^@tr\@^$(tr)^g" \
|
|
-e "s^@dot\@^$(dot)^g" \
|
|
-e "s^@xmllint\@^$(xmllint)^g" \
|
|
-e "s^@xmlflags\@^$(xmlflags)^g" \
|
|
-e "s^@xsltproc\@^$(xsltproc)^g" \
|
|
-e "s^@sqlite_bin\@^$(sqlite_bin)^g" \
|
|
-e "s^@version\@^$(VERSION)^g" \
|
|
-e "s^@perlbindings\@^$(perlbindings)^g" \
|
|
-e "s^@testPath\@^$(coreutils):$$(dirname $$(type -p expr))^g" \
|
|
< $< > $@ || rm $@
|
|
if test -x $<; then chmod +x $@; fi
|