b3ff1f6b3b
Use FFmpeg win64 binaries from gyan.dev (referenced from ffmpeg.org): - https://www.gyan.dev/ffmpeg/builds/ - https://ffmpeg.org/download.html#build-windows Keep the old FFmpeg prebuilt binaries (4.3.1) for win32 builds. Fixes #1753 <https://github.com/Genymobile/scrcpy/issues/1753> Refs #1838 <https://github.com/Genymobile/scrcpy/pull/1838> Refs #2583 <https://github.com/Genymobile/scrcpy/pull/2583> PR #2952 <https://github.com/Genymobile/scrcpy/pull/2952> Co-authored-by: Yu-Chen Lin <npes87184@gmail.com> Co-authored-by: nkh0472 <nkh0472@hotmail.com> Signed-off-by: Romain Vimont <rom@rom1v.com>
61 lines
1 KiB
Bash
Executable file
61 lines
1 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
url="$1"
|
|
sum="$2"
|
|
dir="$3"
|
|
|
|
checksum() {
|
|
local file="$1"
|
|
local sum="$2"
|
|
echo "$file: verifying checksum..."
|
|
echo "$sum $file" | sha256sum -c
|
|
}
|
|
|
|
get_file() {
|
|
local url="$1"
|
|
local file="$2"
|
|
local sum="$3"
|
|
if [[ -f "$file" ]]
|
|
then
|
|
echo "$file: found"
|
|
else
|
|
echo "$file: not found, downloading..."
|
|
wget "$url" -O "$file"
|
|
fi
|
|
checksum "$file" "$sum"
|
|
}
|
|
|
|
extract() {
|
|
local file="$1"
|
|
echo "Extracting $file..."
|
|
if [[ "$file" == *.zip ]]
|
|
then
|
|
unzip -q "$file"
|
|
elif [[ "$file" == *.tar.gz ]]
|
|
then
|
|
tar xf "$file"
|
|
elif [[ "$file" == *.7z ]]
|
|
then
|
|
7z x "$file"
|
|
else
|
|
echo "Unsupported file: $file"
|
|
return 1
|
|
fi
|
|
}
|
|
|
|
get_dep() {
|
|
local url="$1"
|
|
local sum="$2"
|
|
local dir="$3"
|
|
local file="${url##*/}"
|
|
if [[ -d "$dir" ]]
|
|
then
|
|
echo "$dir: found"
|
|
else
|
|
echo "$dir: not found"
|
|
get_file "$url" "$file" "$sum"
|
|
extract "$file"
|
|
fi
|
|
}
|
|
|
|
get_dep "$url" "$sum" "$dir"
|