You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
293 B
10 lines
293 B
#!/usr/bin/env bash |
|
set -euo pipefail |
|
set -x |
|
|
|
sudo dpkg --add-architecture i386 |
|
sudo apt-get update |
|
sudo apt-get install --ignore-hold -y \ |
|
cmake g++-multilib git smpq gettext \ |
|
libsdl2-dev:i386 libsdl2-image-dev:i386 libsodium-dev:i386 \ |
|
libpng-dev:i386 libbz2-dev:i386 libfmt-dev:i386
|
|
|