Forked from csegura2011/asterisk13-dependencies.sh
Last active
January 20, 2021 09:22
-
-
Save maruqmch/ae0e23df8466d4f89831279b3a3e70d3 to your computer and use it in GitHub Desktop.
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
# Installing optional utilities | |
yum -y install vim # advanced text editor | |
yum -y install sed # stream editor | |
yum -y install awk # line editor | |
yum -y install wget # downloads using http protocol | |
yum -y install pciutils | |
yum -y install net-tools | |
yum -y install patch bison flex | |
# Install Compiling tools | |
yum install -y gcc # GNU C compiler | |
yum install -y gcc-c++ # GNU C++ compiler | |
yum install -y kernel-devel # Linux Kernel source code | |
yum install -y automake # Compilation tool that can generate a Makefile file automatically | |
yum install -y kernel | |
# Install development libraries | |
yum install -y ncurses-devel # ncurses text interface | |
yum install -y newt-devel # color text mode, widget based user interfaces | |
yum install -y libuuid-devel # unique id generator | |
yum install -y jansson-devel # json strings handling | |
yum install -y libxml2-devel # xml string handling | |
yum install -y sqlite-devel # sqlite database | |
yum install -y install libtool-ltdl libtool-ltdl-devel # Generic library support script | |
yum install -y bzip2 | |
yum install -y libedit-devel jansson-devel libuuid-devel sqlite-devel libxml2-devel |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment