mirror of
https://github.com/tstack/lnav
synced 2024-11-01 21:40:34 +00:00
23 lines
456 B
Bash
Executable File
23 lines
456 B
Bash
Executable File
#!/bin/sh
|
|
|
|
OS=$(uname -s)
|
|
if test x"${OS}" != x"FreeBSD"; then
|
|
sudo yum install -y \
|
|
zip \
|
|
unzip \
|
|
m4 \
|
|
autoconf \
|
|
automake \
|
|
ncurses \
|
|
ncurses-devel \
|
|
ncurses-static \
|
|
git \
|
|
centos-release-scl \
|
|
perl-Data-Dumper \
|
|
patch \
|
|
wget
|
|
sudo yum install -y "devtoolset-9-gcc*"
|
|
else
|
|
pkg install -y wget git m4 bash autoconf automake sqlite3 gmake
|
|
fi
|