mirror of
https://github.com/Genymobile/scrcpy
synced 2024-12-23 23:53:46 +00:00
a7efb180b9
Provide a prebuilt binary for macOS. Fixes #1733 <https://github.com/Genymobile/scrcpy/issues/1733> Fixes #3235 <https://github.com/Genymobile/scrcpy/issues/3235> Fixes #4489 <https://github.com/Genymobile/scrcpy/issues/4489> Fixes #5327 <https://github.com/Genymobile/scrcpy/issues/5327> PR #5515 <https://github.com/Genymobile/scrcpy/pull/5515> Co-authored-by: Muvaffak Onus <me@muvaf.com>
14 lines
353 B
Bash
Executable File
14 lines
353 B
Bash
Executable File
#!/bin/bash
|
|
set -ex
|
|
cd "$(dirname ${BASH_SOURCE[0]})"
|
|
. build_common
|
|
|
|
cd "$OUTPUT_DIR"
|
|
sha256sum "scrcpy-server-$VERSION" \
|
|
"scrcpy-linux-$VERSION.tar.gz" \
|
|
"scrcpy-win32-$VERSION.zip" \
|
|
"scrcpy-win64-$VERSION.zip" \
|
|
"scrcpy-macos-$VERSION.tar.gz" \
|
|
| tee SHA256SUMS.txt
|
|
echo "Release checksums generated in $PWD/SHA256SUMS.txt"
|