gpu-screen-recorder/install_ubuntu_amd.sh

15 lines
393 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 libavfilter-dev\
libglvnd-dev libx11-dev libxcomposite-dev libxrandr-dev\
libpulse-dev libva2 libegl-mesa0 mesa-va-drivers
2022-10-11 00:47:17 +00:00
./install.sh