c00a31f1b0
For consistency with the other arguments
21 lines
671 B
Bash
Executable file
21 lines
671 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
BUILDDIR=build-auto
|
|
PREBUILT_SERVER_URL=https://github.com/Genymobile/scrcpy/releases/download/v1.22/scrcpy-server-v1.22
|
|
PREBUILT_SERVER_SHA256=c05d273eec7533c0e106282e0254cf04e7f5e8f0c2920ca39448865fab2a419b
|
|
|
|
echo "[scrcpy] Downloading prebuilt server..."
|
|
wget "$PREBUILT_SERVER_URL" -O scrcpy-server
|
|
echo "[scrcpy] Verifying prebuilt server..."
|
|
echo "$PREBUILT_SERVER_SHA256 scrcpy-server" | sha256sum --check
|
|
|
|
echo "[scrcpy] Building client..."
|
|
rm -rf "$BUILDDIR"
|
|
meson "$BUILDDIR" --buildtype=release --strip -Db_lto=true \
|
|
-Dprebuilt_server=scrcpy-server
|
|
cd "$BUILDDIR"
|
|
ninja
|
|
|
|
echo "[scrcpy] Installing (sudo)..."
|
|
sudo ninja install
|