From 730d3631f6ec79d4d7d5c0cd0eb4350751130b97 Mon Sep 17 00:00:00 2001 From: Sascha Greuel Date: Thu, 15 Apr 2021 04:55:07 +0200 Subject: [PATCH] Release v6.0.2 - Enabled JEMalloc - Fixed bzlib delegate support - Enabled gvc delegate - Enabled Ghostscript lib delegate - Removed `--with-mpeg2` flag --- README.md | 2 +- imei.sh | 14 +++++++------- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/README.md b/README.md index f317be2..03e022a 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Currently available build options are * `--work-dir` : Download, extract & build within the directory provided * `--build-dir` : Build target directory * `--force` : Force building of components, even if they are already installed in a newer or the latest version -* `--no-sig-verify` : Disable signature verification on startup +* `--no-sig-verify` / `--dev` : Disable signature verification on startup **Default options** : diff --git a/imei.sh b/imei.sh index 1bc5c19..6cb0fa8 100755 --- a/imei.sh +++ b/imei.sh @@ -8,7 +8,7 @@ # Author : Sascha Greuel # # Date : 2020-04-12 09:29 # # License : ISC # -# Version : 6.0.1 # +# Version : 6.0.2 # # # # Usage : bash ./imei.sh # ############################################################## @@ -83,7 +83,7 @@ while [ "$#" -gt 0 ]; do --ci) CI_BUILD="yes" ;; - --no-sig-verify) + --no-sig-verify|--dev) VERIFY_SIGNATURE="${CYELLOW}disabled${CEND}" ;; *) ;; @@ -384,7 +384,7 @@ install_deps() { fi # Install other build dependencies - PKG_LIST=(git make cmake automake libtool yasm g++ pkg-config perl libde265-dev libx265-dev libltdl-dev libopenjp2-7-dev liblcms2-dev libbrotli-dev libzip-dev liblqr-1-0-dev libzstd-dev libgif-dev libjpeg-dev libopenexr-dev libpng-dev libwebp-dev librsvg2-dev libwmf-dev libxml2-dev libtiff-dev libraw-dev ghostscript gsfonts ffmpeg bzip2 libpango1.0-dev libdjvulibre-dev libfftw3-dev) + PKG_LIST=(git make cmake automake libtool yasm g++ pkg-config perl libde265-dev libx265-dev libltdl-dev libopenjp2-7-dev liblcms2-dev libbrotli-dev libzip-dev libbz2-dev liblqr-1-0-dev libzstd-dev libgif-dev libjpeg-dev libopenexr-dev libpng-dev libwebp-dev librsvg2-dev libwmf-dev libxml2-dev libtiff-dev libraw-dev ghostscript gsfonts ffmpeg libpango1.0-dev libdjvulibre-dev libfftw3-dev libgs-dev libgraphviz-dev libjemalloc-dev) if [[ "${OS_SHORT_CODENAME,,}" != *"stretch"* ]]; then PKG_LIST+=(libraqm-dev libraqm0) @@ -639,7 +639,8 @@ install_imagemagick() { --with-quantum-depth="32" \ --with-magick-plus-plus \ --with-perl \ - --without-jemalloc \ + --with-jemalloc \ + --without-tcmalloc \ --without-umem \ --without-autotrace \ --with-bzlib \ @@ -654,8 +655,8 @@ install_imagemagick() { --with-fontconfig \ --with-freetype \ --with-raqm \ - --without-gslib \ - --without-gvc \ + --with-gslib \ + --with-gvc \ --with-heic \ --with-jbig \ --with-jpeg \ @@ -665,7 +666,6 @@ install_imagemagick() { --with-lqr \ --with-lzma \ --with-openexr \ - --with-mpeg2 \ --with-pango \ --with-png \ --with-raw \