2019-02-17 15:40:35 +00:00
|
|
|
#! /bin/sh
|
2015-04-16 03:32:28 +00:00
|
|
|
|
|
|
|
OS=$(uname -s)
|
|
|
|
if test x"${OS}" != x"FreeBSD"; then
|
2017-03-16 00:01:58 +00:00
|
|
|
sudo yum install -y \
|
2017-04-05 14:05:19 +00:00
|
|
|
zip \
|
|
|
|
unzip \
|
2017-03-16 00:01:58 +00:00
|
|
|
m4 \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
ncurses \
|
|
|
|
ncurses-devel \
|
2017-04-11 14:53:02 +00:00
|
|
|
ncurses-static \
|
2017-03-16 00:01:58 +00:00
|
|
|
git \
|
|
|
|
centos-release-scl \
|
|
|
|
perl-Data-Dumper
|
|
|
|
sudo yum install -y "devtoolset-4-gcc*"
|
2015-04-16 03:32:28 +00:00
|
|
|
else
|
2019-02-17 15:40:35 +00:00
|
|
|
pkg install -y wget git m4 bash autoconf automake sqlite3 gmake
|
2015-04-16 03:32:28 +00:00
|
|
|
fi
|