Skip to content

Commit

Permalink
Release v6.0.2
Browse files Browse the repository at this point in the history
- Enabled JEMalloc
- Fixed bzlib delegate support
- Enabled gvc delegate
- Enabled Ghostscript lib delegate
- Removed `--with-mpeg2` flag
  • Loading branch information
SoftCreatR committed Apr 15, 2021
1 parent a44f746 commit 730d363
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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** :

Expand Down
14 changes: 7 additions & 7 deletions imei.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Author : Sascha Greuel <[email protected]> #
# Date : 2020-04-12 09:29 #
# License : ISC #
# Version : 6.0.1 #
# Version : 6.0.2 #
# #
# Usage : bash ./imei.sh #
##############################################################
Expand Down Expand Up @@ -83,7 +83,7 @@ while [ "$#" -gt 0 ]; do
--ci)
CI_BUILD="yes"
;;
--no-sig-verify)
--no-sig-verify|--dev)
VERIFY_SIGNATURE="${CYELLOW}disabled${CEND}"
;;
*) ;;
Expand Down Expand Up @@ -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)
Expand Down Expand Up @@ -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 \
Expand All @@ -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 \
Expand All @@ -665,7 +666,6 @@ install_imagemagick() {
--with-lqr \
--with-lzma \
--with-openexr \
--with-mpeg2 \
--with-pango \
--with-png \
--with-raw \
Expand Down

0 comments on commit 730d363

Please sign in to comment.