diff options
author | Robin Broda <robin@broda.me> | 2019-12-14 19:25:46 +0100 |
---|---|---|
committer | Levente Polyak <anthraxx@archlinux.org> | 2019-12-27 16:04:56 +0100 |
commit | bcda211dd86b3bf54a9bc40d2e19f1aad4bbfbb8 (patch) | |
tree | e18f5b0df298ee42510153871d9ff7246cacde0e /makepkg-x86_64.conf | |
parent | d4546c59ce2731a96d336f9953108816ff4b954b (diff) | |
download | devtools32-bcda211dd86b3bf54a9bc40d2e19f1aad4bbfbb8.tar.xz |
makepkg.conf: change default compression method to zstd
Diffstat (limited to 'makepkg-x86_64.conf')
-rw-r--r-- | makepkg-x86_64.conf | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/makepkg-x86_64.conf b/makepkg-x86_64.conf index 4569c38..a07756c 100644 --- a/makepkg-x86_64.conf +++ b/makepkg-x86_64.conf @@ -132,7 +132,7 @@ DBGSRCDIR="/usr/src/debug" COMPRESSGZ=(gzip -c -f -n) COMPRESSBZ2=(bzip2 -c -f) COMPRESSXZ=(xz -c -z -) -COMPRESSZST=(zstd -c -z -q -) +COMPRESSZST=(zstd -c -T0 --ultra -20 -) COMPRESSLRZ=(lrzip -q) COMPRESSLZO=(lzop -q) COMPRESSZ=(compress -c -f) @@ -143,7 +143,7 @@ COMPRESSLZ=(lzip -c -f) # EXTENSION DEFAULTS ######################################################################### # -PKGEXT='.pkg.tar.xz' +PKGEXT='.pkg.tar.zst' SRCEXT='.src.tar.gz' # vim: set ft=sh ts=2 sw=2 et: |