gpu-screen-recorder/install_ubuntu.sh

15 lines
324 B
Bash
Raw Normal View History

#!/bin/sh
script_dir=$(dirname "$0")
cd "$script_dir"
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1
set -e
2022-10-06 13:27:45 +00:00
apt-get -y install build-essential\
libswresample-dev libavformat-dev libavcodec-dev libavutil-dev\
libgl-dev libx11-dev libxcomposite-dev\
libpulse-dev
2022-10-11 00:47:17 +00:00
./install.sh