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.
17 lines
344 B
17 lines
344 B
3 years ago
|
#!/bin/sh
|
||
|
|
||
|
set -e
|
||
|
|
||
|
git clone https://github.com/k4zmu2a/SpaceCadetPinball.git
|
||
|
|
||
|
cd SpaceCadetPinball
|
||
|
|
||
|
echo "Installing build dependencies..."
|
||
|
apt-get -qq -y --no-install-recommends install g++ libsdl2-mixer-dev
|
||
|
echo "Build dependencies installed."
|
||
|
|
||
|
echo "Preparing the building environment..."
|
||
|
cmake .
|
||
|
make
|
||
|
echo "Building environment prepared."
|