1
1
mirror of https://github.com/wez/wezterm.git synced 2024-11-09 22:15:15 +03:00

get-deps: sort list

This commit is contained in:
David Soria Parra 2019-06-16 14:11:15 -07:00 committed by Wez Furlong
parent 797c7bb41a
commit 7cf91d4658

View File

@ -4,33 +4,33 @@
if test -e /etc/centos-release || test -e /etc/fedora-release; then
yum install -y \
cmake \
fontconfig-devel \
libxcb-devel \
xcb-util-keysyms-devel \
xcb-util-wm-devel \
libxkbcommon-devel \
libxkbcommon-x11-devel \
fontconfig-devel \
mesa-libEGL-devel \
ragel
ragel \
xcb-util-keysyms-devel \
xcb-util-wm-devel
exit $?
fi
case `lsb_release -ds` in
Ubuntu*|Debian*)
apt-get install -y \
cmake \
xorg-dev \
bsdutils \
libxcb-icccm4-dev \
cmake \
libegl1-mesa-dev \
libfontconfig1-dev \
libxcb-ewmh-dev \
libxcb-icccm4-dev \
libxcb-keysyms1-dev \
libxcb-xkb-dev \
libxkbcommon-dev \
libxkbcommon-x11-dev \
libfontconfig1-dev \
libegl1-mesa-dev \
ragel \
xdg-utils \
ragel
xorg-dev
;;
*)
echo "Please contribute the commands to install the deps"