Created
October 19, 2018 04:36
-
-
Save vaelen/24a8c1af34d68f9b5f2c4deb6ed3fdb9 to your computer and use it in GitHub Desktop.
Install gr-stellarstation on Ubuntu 16.04, such as GNURadio LiveCD. (Update all system packages first!)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -e -x | |
echo "########## INSTALL CONAN ##########" | |
sudo apt update | |
sudo apt install pip3 | |
pip3 install conan | |
conan remote add bincrafters https://api.bintray.com/conan/bincrafters/public-conan | |
conan remote add inexorgame https://api.bintray.com/conan/inexorgame/inexor-conan | |
conan remote add stellarstation https://api.bintray.com/conan/infostellarinc/stellarstation-conan | |
echo "########## CLONE GR-STELLARSTATION ##########" | |
git clone https://github.com/infostellarinc/gr-stellarstation.git | |
cd gr-stellarstation | |
mkdir build | |
cd build | |
cmake .. | |
echo "########## BUILD GR-STELLARSTATION ##########" | |
make | |
echo "########## INSTALL GR-STELLARSTATION ##########" | |
sudo make install | |
echo "########## DONE ##########" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment