2023-07-21 13:11:13 +00:00
|
|
|
#!/bin/sh -e
|
2022-10-01 23:24:11 +00:00
|
|
|
|
|
|
|
script_dir=$(dirname "$0")
|
|
|
|
cd "$script_dir"
|
|
|
|
|
|
|
|
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1
|
|
|
|
|
|
|
|
./build.sh
|
2023-06-04 11:49:47 +00:00
|
|
|
strip gsr-kms-server
|
|
|
|
strip gpu-screen-recorder
|
2023-10-08 08:47:58 +00:00
|
|
|
|
2023-04-07 03:31:46 +00:00
|
|
|
install -Dm755 "gsr-kms-server" "/usr/bin/gsr-kms-server"
|
2022-10-01 23:24:11 +00:00
|
|
|
install -Dm755 "gpu-screen-recorder" "/usr/bin/gpu-screen-recorder"
|
2023-10-15 16:11:47 +00:00
|
|
|
if [ -d "/usr/lib/systemd/user" ]; then
|
|
|
|
install -Dm644 "extra/gpu-screen-recorder.service" "/usr/lib/systemd/user/gpu-screen-recorder.service"
|
|
|
|
fi
|
2023-11-22 16:31:18 +00:00
|
|
|
# Not necessary, but removes the password prompt when trying to record a monitor on amd/intel or nvidia wayland
|
2023-09-20 10:01:14 +00:00
|
|
|
setcap cap_sys_admin+ep /usr/bin/gsr-kms-server
|
2023-11-22 16:31:18 +00:00
|
|
|
# Not ncessary, but allows use of EGL_CONTEXT_PRIORITY_LEVEL_IMG which might decrease performance impact on the system
|
2023-09-20 10:01:14 +00:00
|
|
|
setcap cap_sys_nice+ep /usr/bin/gpu-screen-recorder
|
2023-03-17 16:17:14 +00:00
|
|
|
|
2022-10-01 23:24:11 +00:00
|
|
|
echo "Successfully installed gpu-screen-recorder"
|