mirror of
https://github.com/Genymobile/scrcpy
synced 2024-12-23 23:53:46 +00:00
cb19686d79
Provide a prebuilt binary for Linux. Fixes #5327 <https://github.com/Genymobile/scrcpy/issues/5327> PR #5515 <https://github.com/Genymobile/scrcpy/pull/5515>
25 lines
433 B
Bash
Executable File
25 lines
433 B
Bash
Executable File
#!/bin/bash
|
|
# To customize the version name:
|
|
# VERSION=myversion ./release.sh
|
|
set -e
|
|
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
rm -rf output
|
|
|
|
./test_server.sh
|
|
./test_client.sh
|
|
|
|
./build_server.sh
|
|
./build_windows.sh 32
|
|
./build_windows.sh 64
|
|
./build_linux.sh
|
|
|
|
./package_server.sh
|
|
./package_client.sh win32 zip
|
|
./package_client.sh win64 zip
|
|
./package_client.sh linux tar.gz
|
|
|
|
./generate_checksums.sh
|
|
|
|
echo "Release generated in $PWD/output"
|