Skip to content

Instantly share code, notes, and snippets.

@vaelen
Created October 19, 2018 04:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vaelen/24a8c1af34d68f9b5f2c4deb6ed3fdb9 to your computer and use it in GitHub Desktop.
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!)
#!/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