1
0
Fork 0
mirror of https://github.com/luanti-org/luanti.git synced 2025-09-15 18:57:08 +00:00

Centralize IrrlichtMt version used for builds

maybe a submodule would have really been easier...
This commit is contained in:
sfan5 2022-07-21 20:51:02 +02:00
parent 71f6a5f44e
commit 175e132576
7 changed files with 14 additions and 17 deletions

View file

@ -10,7 +10,8 @@ install_linux_deps() {
if [[ "$1" == "--no-irr" ]]; then
shift
else
wget "https://github.com/minetest/irrlicht/releases/download/1.9.0mt7/ubuntu-bionic.tar.gz"
local ver=$(cat misc/irrlichtmt_tag.txt)
wget "https://github.com/minetest/irrlicht/releases/download/$ver/ubuntu-bionic.tar.gz"
sudo tar -xaf ubuntu-bionic.tar.gz -C /usr/local
fi