Skip to content

Instantly share code, notes, and snippets.

@taoyuan
Created July 24, 2018 06:16
Show Gist options
  • Save taoyuan/fa9b1f8bce558c12e258c3f930ce0250 to your computer and use it in GitHub Desktop.
Save taoyuan/fa9b1f8bce558c12e258c3f930ce0250 to your computer and use it in GitHub Desktop.
pushd /opt
sudo bash -c "wget https://github.com/sarfata/pi-blaster/archive/master.zip -O pi-blaster.zip"
sudo unzip pi-blaster.zip
if [ -d pi-blaster ]; then
sudo rm -fr pi-blaster
fi
sudo mv pi-blaster-master pi-blaster
cd pi-blaster
sudo ./autogen.sh
sudo ./configure
sudo make
# Can not start pi-blaster in vm so ignore error "recipe for target 'install-data-hook' failed"
sudo make install || true
popd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment