mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-01-23 10:35:44 +00:00
Re-enable release builds push into Github releases page when new v-prefixed tags are pushed (i.e. v2.4.2).
16 lines
327 B
Bash
Executable file
Vendored
16 lines
327 B
Bash
Executable file
Vendored
#!/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 \
|
|
libvpx6 \
|
|
libx264-160 \
|
|
libopus0 \
|
|
libgl1-mesa-glx \
|
|
xvfb
|