Last active
September 13, 2016 06:21
-
-
Save karminski/56354287100be972828a395666cdd4dd to your computer and use it in GitHub Desktop.
centos7 yum repo for php7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# for_centos7.sh | |
# @version 160913:4 | |
# @author karminski <[email protected]> | |
# | |
rpm -ivh http://mirrors.sohu.com/fedora-epel/7Server/x86_64/e/epel-release-7-8.noarch.rpm | |
yum clean all && yum makecache | |
yum update | |
yum group install "Development Tools" | |
yum install -q \ | |
pcre-devel.x86_64 \ | |
openssl-devel.x86_64 \ | |
wget \ | |
gcc \ | |
g++ \ | |
gcc-c++ \ | |
php-mcrypt \ | |
libmcrypt \ | |
libmcrypt-devel\ | |
libxml2-devel.x86_64 \ | |
bzip2-libs.x86_64 \ | |
bzip2-devel.x86_64 \ | |
libcurl.x86_64 \ | |
libcurl-devel.x86_64 \ | |
libjpeg-turbo.x86_64 \ | |
libjpeg-turbo-devel.x86_64 \ | |
libjpeg-turbo-static.x86_64 \ | |
libjpeg-turbo-utils.x86_64 \ | |
libpng.x86_64 \ | |
libpng-devel.x86_64 \ | |
libpng-static.x86_64 \ | |
libXpm.x86_64 \ | |
libXpm-devel.x86_64 \ | |
freetype-devel.x86_64 \ | |
freetype.x86_64 \ | |
gmp.x86_64 \ | |
gmp-devel.x86_64 \ | |
gmp-static.x86_64 \ | |
openldap.x86_64 \ | |
php-ldap.x86_64 \ | |
openldap-devel.x86_64 \ | |
php-mcrypt.x86_64 \ | |
libmcrypt-devel.x86_64 \ | |
libmcrypt.x86_64 \ | |
php-pspell.x86_64 \ | |
readline-devel.x86_64 \ | |
readline-static.x86_64 \ | |
readline.x86_64 \ | |
php-recode.x86_64 \ | |
recode-devel.x86_64 \ | |
recode.x86_64 \ | |
libxslt.x86_64 \ | |
libxslt-devel.x86_64 \ | |
m4.x86_64 \ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment