mirror of
https://github.com/vcmi/vcmi.git
synced 2024-12-14 10:12:59 +02:00
15 lines
656 B
Bash
15 lines
656 B
Bash
#!/bin/sh
|
|
|
|
sudo apt remove needrestart
|
|
sudo apt-get update
|
|
|
|
# Dependencies
|
|
# In case of change in dependencies list please also update:
|
|
# - developer docs at docs/developer/Building_Linux.md
|
|
# - debian build settings at debian/control
|
|
sudo apt-get install libboost-dev libboost-filesystem-dev libboost-system-dev libboost-thread-dev libboost-program-options-dev libboost-locale-dev libboost-iostreams-dev \
|
|
libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev \
|
|
qtbase5-dev \
|
|
ninja-build zlib1g-dev libavformat-dev libswscale-dev libtbb-dev libluajit-5.1-dev \
|
|
libminizip-dev libfuzzylite-dev qttools5-dev libsqlite3-dev # Optional dependencies
|