cloud-game/scripts/install.sh
2023-04-23 13:41:40 +03:00

18 lines
360 B
Bash
Executable file

#!/usr/bin/env bash
echo This script should install application dependencies for Debian-based systems
if [ $(id -u) -ne 0 ]
then
echo "error: run with sudo or root"
exit 1
fi
apt-get -qq update
apt-get -qq install --no-install-recommends -y \
libvpx7 \
libx264-164 \
libopus0 \
libgl1-mesa-dri \
xvfb
apt-get clean
apt-get autoremove