blob: 78e45b863702434ce2b7aec03f75110471146abe (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh -e
script_dir=$(dirname "$0")
cd "$script_dir"
[ $(id -u) -ne 0 ] && echo "You need root privileges to run the install script" && exit 1
echo "Warning: this install.sh script is deprecated. Use meson directly instead if possible"
test -d build || meson setup build
meson configure --prefix=/usr --buildtype=release -Dstrip=true build
ninja -C build install
echo "Successfully installed gpu-screen-recorder-gtk"
|