mirror of
https://github.com/Genymobile/scrcpy
synced 2024-11-11 01:10:32 +00:00
725a922271
Include the latest version of SDL in Windows releases.
33 lines
845 B
Bash
Executable File
33 lines
845 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
DIR=$(dirname ${BASH_SOURCE[0]})
|
|
cd "$DIR"
|
|
. common
|
|
mkdir -p "$PREBUILT_DATA_DIR"
|
|
cd "$PREBUILT_DATA_DIR"
|
|
|
|
DEP_DIR=SDL2-2.26.1
|
|
|
|
FILENAME=SDL2-devel-2.26.1-mingw.tar.gz
|
|
SHA256SUM=aa43e1531a89551f9f9e14b27953a81d4ac946a9e574b5813cd0f2b36e83cc1c
|
|
|
|
if [[ -d "$DEP_DIR" ]]
|
|
then
|
|
echo "$DEP_DIR" found
|
|
exit 0
|
|
fi
|
|
|
|
get_file "https://libsdl.org/release/$FILENAME" "$FILENAME" "$SHA256SUM"
|
|
|
|
mkdir "$DEP_DIR"
|
|
cd "$DEP_DIR"
|
|
|
|
TAR_PREFIX="$DEP_DIR" # root directory inside the tar has the same name
|
|
tar xf "../$FILENAME" --strip-components=1 \
|
|
"$TAR_PREFIX"/i686-w64-mingw32/bin/SDL2.dll \
|
|
"$TAR_PREFIX"/i686-w64-mingw32/include/ \
|
|
"$TAR_PREFIX"/i686-w64-mingw32/lib/ \
|
|
"$TAR_PREFIX"/x86_64-w64-mingw32/bin/SDL2.dll \
|
|
"$TAR_PREFIX"/x86_64-w64-mingw32/include/ \
|
|
"$TAR_PREFIX"/x86_64-w64-mingw32/lib/ \
|