mirror of https://github.com/midoks/mdserver-web
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
39 lines
1.1 KiB
39 lines
1.1 KiB
#!/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
|
|
|
|
|
|
|