summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorPedro A. López-Valencia2019-11-29 05:58:31 -0500
committerPedro A. López-Valencia2019-11-29 05:58:31 -0500
commit6fc49f5c5f7b8a058d8703df66460c151e0dcce4 (patch)
tree289b37c0fe6c69197dfd1a597ab5a9b12f760e49
parent52b9930b3277ce67627b37b7f8e605e54293c625 (diff)
downloadaur-6fc49f5c5f7b8a058d8703df66460c151e0dcce4.tar.gz
add option to disable zstd bundle compression. For the whiners.
-rw-r--r--PKGBUILD5
1 files changed, 4 insertions, 1 deletions
diff --git a/PKGBUILD b/PKGBUILD
index dff78e1f482e..5c3a23f3603a 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -54,11 +54,12 @@ MAGICK= # ImageMagick 7 support. Deprecated (read the logs).
#are doing.
# -->>If you just *believe* you need it, you don't.<<--
NOGZ="YES" # Don't compress .el files.
+ZSTDPACK="YES" # Compress install bundle with zstd.
################################################################################
################################################################################
pkgname="emacs-git"
-pkgver=27.0.50.139564
+pkgver=27.0.50.139618
pkgrel=1
pkgdesc="GNU Emacs. Development master."
arch=('x86_64') # Arch Linux only. Derivative users are on their own.
@@ -76,10 +77,12 @@ source=("emacs-git::git://git.savannah.gnu.org/emacs.git")
md5sums=('SKIP')
################################################################################
+if [[ $ZSTDPACK == "YES" ]]; then
# Guess why!
COMPRESSZST=(zstd -c -z -q -T0 -19 -)
PKGEXT='.pkg.tar.zst'
SRCEXT='.src.tar.zst'
+fi
################################################################################