diff --git a/plugins/php/lib/imagemagick.sh b/plugins/php/lib/imagemagick.sh new file mode 100644 index 000000000..8e1d074e0 --- /dev/null +++ b/plugins/php/lib/imagemagick.sh @@ -0,0 +1,39 @@ +#!/bin/bash +PATH=/bin:/sbin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/local/sbin:~/bin:/opt/homebrew/bin +export PATH + +curPath=`pwd` +rootPath=$(dirname "$curPath") +rootPath=$(dirname "$rootPath") +rootPath=$(dirname "$rootPath") +rootPath=$(dirname "$rootPath") + +igmVersion="7.1.1-15" +# echo $rootPath + +SERVER_ROOT=$rootPath/lib +SOURCE_ROOT=$rootPath/source/lib + +if [ ! -d ${SERVER_ROOT}/ImageMagick ];then + cd ${SOURCE_ROOT} + if [ ! -f ${SOURCE_ROOT}/ImageMagick-${igmVersion}.tar.gz ];then + wget --no-check-certificate -O ImageMagick-${igmVersion}.tar.gz https://imagemagick.org/archive/ImageMagick-${igmVersion}.tar.gz -T 20 + fi + + tar -zxf ImageMagick-${igmVersion}.tar.gz + cd ImageMagick-${igmVersion} + ./configure --prefix=${SERVER_ROOT}/ImageMagick --disable-openmp + make && make install + + if [ -d /etc/ld.so.conf.d ];then + echo "/www/server/lib/ImageMagick/lib" > /etc/ld.so.conf.d/ImageMagick.conf + elif [ -f /etc/ld.so.conf ]; then + echo "/www/server/lib/ImageMagick/lib" >> /etc/ld.so.conf + fi + + ldconfig + + cd $SOURCE_ROOT && rm -rf $SOURCE_ROOT/ImageMagick-${igmVersion} +fi + +