1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-08-26 18:21:04 +00:00

Copy irrlichtmt to <root>/irr/

This commit is contained in:
import 2024-03-21 20:13:15 +01:00 committed by sfan5
parent a7908da968
commit f638482fba
349 changed files with 109124 additions and 0 deletions

9
irr/scripts/ci-get-mingw.sh Executable file
View file

@ -0,0 +1,9 @@
#!/bin/bash
set -e
topdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
name=llvm-mingw-20231128-ucrt-ubuntu-20.04-x86_64.tar.xz
wget "https://github.com/mstorsjo/llvm-mingw/releases/download/20231128/$name" -O "$name"
sha256sum -w -c <(grep -F "$name" "$topdir/sha256sums.txt")
sudo tar -xaf "$name" -C /usr --strip-components=1
rm -f "$name"