#!/bin/bash # Author: yeho # BLOG: https://blog.linuxeye.com # # Notes: OneinStack for CentOS/RadHat 5+ Debian 6+ and Ubuntu 12+ # # Project home page: # https://oneinstack.com # https://github.com/lj2007331/oneinstack Install_GraphicsMagick() { pushd ${oneinstack_dir}/src tar xzf GraphicsMagick-${GraphicsMagick_version}.tar.gz pushd GraphicsMagick-${GraphicsMagick_version} ./configure --prefix=/usr/local/graphicsmagick --enable-shared --enable-static make -j ${THREAD} && make install popd rm -rf GraphicsMagick-${GraphicsMagick_version} popd } Install_php-gmagick() { pushd ${oneinstack_dir}/src phpExtensionDir=`${php_install_dir}/bin/php-config --extension-dir` if [ -e "${php_install_dir}/bin/phpize" ]; then if [ "`${php_install_dir}/bin/php -r 'echo PHP_VERSION;' | awk -F. '{print $1}'`" == '7' ]; then tar xzf gmagick-${gmagick_for_php7_version}.tgz pushd gmagick-${gmagick_for_php7_version} else tar xzf gmagick-${gmagick_version}.tgz pushd gmagick-${gmagick_version} fi export PKG_CONFIG_PATH=/usr/local/lib/pkgconfig ${php_install_dir}/bin/phpize ./configure --with-php-config=${php_install_dir}/bin/php-config --with-gmagick=/usr/local/graphicsmagick make -j ${THREAD} && make install popd if [ -f "${phpExtensionDir}/gmagick.so" ]; then echo 'extension=gmagick.so' > ${php_install_dir}/etc/php.d/ext-gmagick.ini echo "${CSUCCESS}PHP gmagick module installed successfully! ${CEND}" rm -rf gmagick-${gmagick_for_php7_version} gmagick-${gmagick_version} else echo "${CFAILURE}PHP gmagick module install failed, Please contact the author! ${CEND}" fi fi popd }