Created
July 24, 2018 06:16
-
-
Save taoyuan/fa9b1f8bce558c12e258c3f930ce0250 to your computer and use it in GitHub Desktop.
This file contains 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
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