mirror of
https://repo.dec05eba.com/gpu-screen-recorder
synced 2026-04-23 02:05:01 +09:00
Add install script for ubuntu based distros
This commit is contained in:
27
install_ubuntu.sh
Executable file
27
install_ubuntu.sh
Executable file
@@ -0,0 +1,27 @@
|
||||
#!/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
|
||||
|
||||
dpkg -l nvidia-cuda-dev > /dev/null 2>&1
|
||||
cuda_missing="$?"
|
||||
|
||||
set -e
|
||||
apt-get -y install build-essential nvidia-cuda-dev\
|
||||
libswresample-dev libavformat-dev libavcodec-dev libavutil-dev\
|
||||
libx11-dev libxcomposite-dev\
|
||||
libglew-dev libglfw3-dev\
|
||||
libpulse-dev
|
||||
|
||||
dependencies="glew libavcodec libavformat libavutil x11 xcomposite glfw3 libpulse-simple libswresample"
|
||||
includes="$(pkg-config --cflags $dependencies) -I/opt/cuda/targets/x86_64-linux/include"
|
||||
libs="$(pkg-config --libs $dependencies) /usr/lib/x86_64-linux-gnu/stubs/libcuda.so -ldl -pthread -lm"
|
||||
g++ -c src/sound.cpp -O2 $includes -DPULSEAUDIO=1
|
||||
g++ -c src/main.cpp -O2 $includes -DPULSEAUDIO=1
|
||||
g++ -o gpu-screen-recorder -O2 sound.o main.o -s $libs
|
||||
install -Dm755 "gpu-screen-recorder" "/usr/local/bin/gpu-screen-recorder"
|
||||
|
||||
echo "Successfully installed gpu-screen-recorder"
|
||||
[ "$cuda_missing" -eq 1 ] && echo "You need to reboot your computer before using gpu-screen-recorder because cuda was installed"
|
||||
Reference in New Issue
Block a user