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

21 lines
400 B
Plaintext
Raw Normal View History

#!/bin/sh
case `lsb_release -ds` in
Ubuntu*)
apt-get install -y \
bsdutils \
libxcb-icccm4-dev \
libxcb-ewmh-dev \
libxcb-keysyms1-dev \
libfontconfig1-dev \
libfreetype6-dev \
libegl1-mesa-dev \
libharfbuzz-dev \
ragel
;;
*)
echo "Please contribute the commands to install the deps"
echo "For `lsb_release -ds`"
;;
esac