From 2dcad0828ade5f58ed7c7bae02e7dd5573170585 Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Mon, 13 Mar 2023 10:23:58 -0400 Subject: [PATCH] Set makepkg to build .xz packages by default --- config-files/makepkg.conf | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config-files/makepkg.conf b/config-files/makepkg.conf index 617badd..423aadc 100755 --- a/config-files/makepkg.conf +++ b/config-files/makepkg.conf @@ -135,7 +135,7 @@ DBGSRCDIR="/usr/src/debug" # COMPRESSGZ=(gzip -c -f -n) COMPRESSBZ2=(bzip2 -c -f) -COMPRESSXZ=(xz -c -z --threads=0 -) +COMPRESSXZ=(xz -c -z -e6 --threads=0 -) COMPRESSZST=(zstd -c -z -q --threads=0 -) COMPRESSLRZ=(lrzip -q) COMPRESSLZO=(lzop -q) @@ -147,7 +147,7 @@ COMPRESSLZ=(lzip -c -f) # EXTENSION DEFAULTS ######################################################################### # -PKGEXT='.pkg.tar.zst' +PKGEXT='.pkg.tar.xz' SRCEXT='.src.tar.gz' #########################################################################