mirror of
https://github.com/cmosher01/Epple-II.git
synced 2024-12-26 10:32:56 +00:00
11 lines
328 B
Bash
Executable File
11 lines
328 B
Bash
Executable File
#!/bin/sh
|
|
|
|
echo "::group::configure kinetic"
|
|
sudo add-apt-repository "deb http://mirror.math.princeton.edu/pub/ubuntu lunar main universe"
|
|
echo "::endgroup::"
|
|
|
|
echo "::group::install dependencies"
|
|
sudo apt-get -qqqq update
|
|
sudo apt-get -qqqq install libboost-all-dev libwxgtk3.2-dev libsdl2-dev libgtk-3-dev
|
|
echo "::endgroup::"
|