2020-05-03 21:21:58 +03:00
|
|
|
#!/bin/bash
|
2018-02-25 20:22:19 +03:00
|
|
|
|
2018-02-27 09:17:05 +03:00
|
|
|
# Centos may not have lsb_release installed
|
|
|
|
if test -e /etc/centos-release || test -e /etc/fedora-release; then
|
2020-05-04 18:21:30 +03:00
|
|
|
if test -x /bin/dnf ; then
|
|
|
|
YUM=dnf
|
|
|
|
else
|
|
|
|
YUM=yum
|
|
|
|
fi
|
2020-11-29 21:26:11 +03:00
|
|
|
# Fedora 33 moved some perl bits around
|
|
|
|
$YUM install -y perl-FindBin perl-File-Compare || true
|
2020-05-04 18:21:30 +03:00
|
|
|
$YUM install -y \
|
2019-11-10 06:46:37 +03:00
|
|
|
make \
|
2020-02-11 09:16:34 +03:00
|
|
|
gcc \
|
|
|
|
gcc-c++ \
|
2019-06-17 00:11:15 +03:00
|
|
|
fontconfig-devel \
|
2019-06-17 00:11:36 +03:00
|
|
|
openssl-devel \
|
2020-11-29 21:26:11 +03:00
|
|
|
perl-interpreter \
|
2020-02-11 09:16:34 +03:00
|
|
|
python3 \
|
2018-02-27 09:17:05 +03:00
|
|
|
libxcb-devel \
|
2019-02-23 09:11:25 +03:00
|
|
|
libxkbcommon-devel \
|
|
|
|
libxkbcommon-x11-devel \
|
2019-11-29 18:47:43 +03:00
|
|
|
wayland-devel \
|
2018-02-27 09:17:05 +03:00
|
|
|
mesa-libEGL-devel \
|
2019-06-17 00:11:15 +03:00
|
|
|
xcb-util-keysyms-devel \
|
2019-12-29 19:41:50 +03:00
|
|
|
xcb-util-wm-devel \
|
2019-12-30 01:03:09 +03:00
|
|
|
rpm-build \
|
|
|
|
redhat-lsb-core
|
2018-02-27 09:17:05 +03:00
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
2020-05-03 21:21:58 +03:00
|
|
|
if test -e /etc/debian_version ; then
|
|
|
|
apt-get install -y \
|
|
|
|
bsdutils \
|
|
|
|
cmake \
|
2020-11-10 12:27:45 +03:00
|
|
|
dpkg-dev \
|
2020-05-03 21:21:58 +03:00
|
|
|
fakeroot \
|
|
|
|
gcc \
|
|
|
|
g++ \
|
|
|
|
libegl1-mesa-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libfontconfig1-dev \
|
|
|
|
libwayland-dev \
|
2020-05-04 08:45:10 +03:00
|
|
|
libx11-xcb-dev \
|
2020-05-03 21:21:58 +03:00
|
|
|
libxcb-ewmh-dev \
|
|
|
|
libxcb-icccm4-dev \
|
|
|
|
libxcb-keysyms1-dev \
|
|
|
|
libxcb-shm0-dev \
|
|
|
|
libxcb-xkb-dev \
|
|
|
|
libxkbcommon-dev \
|
|
|
|
libxkbcommon-x11-dev \
|
|
|
|
lsb-release \
|
|
|
|
python3 \
|
|
|
|
xdg-utils \
|
|
|
|
xorg-dev
|
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
2020-06-07 20:57:41 +03:00
|
|
|
if test -e /etc/arch-release ; then
|
2021-01-10 01:19:26 +03:00
|
|
|
pacman -S --noconfirm --needed \
|
2020-06-07 20:57:41 +03:00
|
|
|
'cargo' \
|
|
|
|
'cmake' \
|
|
|
|
'fontconfig' \
|
|
|
|
'git' \
|
|
|
|
'hicolor-icon-theme' \
|
|
|
|
'libx11' \
|
|
|
|
'libxkbcommon-x11' \
|
|
|
|
'pkgconf' \
|
|
|
|
'python3' \
|
|
|
|
'rust' \
|
|
|
|
'wayland' \
|
|
|
|
'xcb-util-keysyms' \
|
|
|
|
'xcb-util-wm'
|
|
|
|
exit $?
|
|
|
|
fi
|
|
|
|
|
2020-05-03 21:21:58 +03:00
|
|
|
case $OSTYPE in
|
|
|
|
darwin*|msys)
|
|
|
|
exit 0
|
|
|
|
;;
|
2020-09-09 07:48:00 +03:00
|
|
|
freebsd*)
|
|
|
|
pkg install -y \
|
|
|
|
cmake \
|
|
|
|
curl \
|
|
|
|
egl-wayland \
|
|
|
|
expat \
|
|
|
|
fontconfig \
|
|
|
|
gcc \
|
|
|
|
gettext \
|
|
|
|
git \
|
|
|
|
gmake \
|
|
|
|
libxcb \
|
|
|
|
libxkbcommon \
|
|
|
|
mesa-devel \
|
|
|
|
openssl \
|
|
|
|
p5-ExtUtils-MakeMaker \
|
|
|
|
perl5 \
|
|
|
|
pkgconf \
|
|
|
|
python3 \
|
|
|
|
rust \
|
|
|
|
wayland \
|
|
|
|
xcb-util-keysyms \
|
|
|
|
xcb-util-wm \
|
|
|
|
z \
|
|
|
|
zip
|
|
|
|
exit $?
|
|
|
|
;;
|
2018-02-25 20:22:19 +03:00
|
|
|
*)
|
|
|
|
echo "Please contribute the commands to install the deps"
|
|
|
|
echo "For `lsb_release -ds`"
|
2020-05-03 21:21:58 +03:00
|
|
|
exit 1
|
|
|
|
;;
|
2018-02-25 20:22:19 +03:00
|
|
|
esac
|