Adds WEBP support in ImageMagick (#506)

This commit is contained in:
Rafael dos Santos Silva 2020-12-18 14:34:54 -03:00 committed by GitHub
parent 60a8de57b2
commit d3bb191229
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

View File

@ -18,7 +18,7 @@ WDIR=/tmp/imagemagick
# Install build deps
apt -y -q remove imagemagick
apt -y -q install ghostscript gsfonts pkg-config autoconf libbz2-dev libjpeg-dev libtiff-dev libfreetype6-dev libde265-dev
apt -y -q install ghostscript gsfonts pkg-config autoconf libbz2-dev libjpeg-dev libtiff-dev libfreetype6-dev libde265-dev libwebp-dev
mkdir -p $WDIR
cd $WDIR
@ -71,7 +71,8 @@ PKG_CONF_LIBDIR=$PREFIX/lib LDFLAGS=-L$PREFIX/lib CFLAGS=-I$PREFIX/include ./con
--with-lzma \
--with-png \
--with-tiff \
--with-heic
--with-heic \
--with-webp
make all && make install
cd $HOME