mirror of
https://github.com/simplex-chat/simplex-chat.git
synced 2025-06-28 20:29:53 +00:00
25 lines
772 B
Bash
25 lines
772 B
Bash
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
function readlink() {
|
|
echo "$(cd "$(dirname "$1")"; pwd -P)"
|
|
}
|
|
root_dir="$(dirname "$(dirname "$(readlink "$0")")")"
|
|
vlc_dir=$root_dir/apps/multiplatform/common/src/commonMain/cpp/desktop/libs/windows-x86_64/vlc
|
|
rm -rf $vlc_dir
|
|
mkdir -p $vlc_dir/vlc || exit 0
|
|
|
|
cd /tmp
|
|
mkdir tmp 2>/dev/null || true
|
|
cd tmp
|
|
curl --tlsv1.2 https://irltoolkit.mm.fcix.net/videolan-ftp/vlc/3.0.18/win64/vlc-3.0.18-win64.zip -L -o vlc
|
|
$WINDIR\\System32\\tar.exe -xf vlc
|
|
cd vlc-*
|
|
# Setting the same date as the date that will be on the file after extraction from JAR to make VLC cache checker happy
|
|
find plugins | grep ".dll" | xargs touch -m -d "1970-01-01T00:00:00Z"
|
|
./vlc-cache-gen plugins
|
|
cp *.dll $vlc_dir/
|
|
cp -r -p plugins/ $vlc_dir/vlc/plugins
|
|
cd ../../
|
|
rm -rf tmp
|