12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- #!/bin/bash
- # Author: yeho <lj2007331 AT gmail.com>
- # BLOG: https://linuxeye.com
- #
- # Notes: OneinStack for CentOS/RedHat 7+ Debian 9+ and Ubuntu 16+
- #
- # Project home page:
- # https://oneinstack.com
- # https://github.com/oneinstack/oneinstack
- Install_pecl_yaf() {
- if [ -e "${php_install_dir}/bin/phpize" ]; then
- pushd ${oneinstack_dir}/src > /dev/null
- PHP_detail_ver=$(${php_install_dir}/bin/php-config --version)
- PHP_main_ver=${PHP_detail_ver%.*}
- if [[ "${PHP_main_ver}" =~ ^7.[0-4]$|^8.0$ ]]; then
- phpExtensionDir=$(${php_install_dir}/bin/php-config --extension-dir)
- src_url=https://pecl.php.net/get/yaf-${yaf_ver}.tgz && Download_src
- tar xzf yaf-${yaf_ver}.tgz
- pushd yaf-${yaf_ver} > /dev/null
- ${php_install_dir}/bin/phpize
- ./configure --with-php-config=${php_install_dir}/bin/php-config
- make -j ${THREAD} && make install
- popd > /dev/null
- if [ -f "${phpExtensionDir}/yaf.so" ]; then
- echo 'extension=yaf.so' > ${php_install_dir}/etc/php.d/04-yaf.ini
- echo "${CSUCCESS}PHP yaf module installed successfully! ${CEND}"
- rm -rf yaf-${yaf_ver}
- else
- echo "${CFAILURE}PHP yaf module install failed, Please contact the author! ${CEND}" && grep -Ew 'NAME|ID|ID_LIKE|VERSION_ID|PRETTY_NAME' /etc/os-release
- fi
- else
- echo "${CWARNING}Your php ${PHP_detail_ver} does not support yaf! ${CEND}";
- fi
- popd > /dev/null
- fi
- }
- Uninstall_pecl_yaf() {
- if [ -e "${php_install_dir}/etc/php.d/04-yaf.ini" ]; then
- rm -f ${php_install_dir}/etc/php.d/04-yaf.ini
- echo; echo "${CMSG}PHP yaf module uninstall completed${CEND}"
- else
- echo; echo "${CWARNING}PHP yaf module does not exist! ${CEND}"
- fi
- }
|