1
0
mirror of https://github.com/vcmi/vcmi.git synced 2024-12-14 10:12:59 +02:00
vcmi/CI/linux/before_install.sh

16 lines
510 B
Bash
Raw Normal View History

2016-10-11 23:52:47 +02:00
#!/bin/sh
2021-07-05 19:04:17 +02:00
sudo apt-get update
2016-10-11 23:52:47 +02:00
2021-07-05 19:04:17 +02:00
# Boost
wget -nv https://boostorg.jfrog.io/artifactory/main/release/1.66.0/source/boost_1_66_0.tar.gz
tar xfz boost_1_66_0.tar.gz
cd boost_1_66_0
./bootstrap.sh --with-libraries=program_options,filesystem,system,thread,locale,date_time
./b2
sudo ./b2 install
2016-10-11 23:52:47 +02:00
2021-07-05 19:04:17 +02:00
# Dependencies
sudo apt-get install libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev
sudo apt-get install qtbase5-dev
sudo apt-get install ninja-build zlib1g-dev libavformat-dev libswscale-dev libtbb-dev