I'm curious why you don't have some sort of bashfile installer for this to make it easier for newer users. Would you accept a PR for this?
For example, this could be done:
#!/bin/bash
sudo apt-get install g++-4.7 cmake libfreetype6-dev libgraphicsmagick++1-dev -y
wget https://github.com/Wicker25/Rpi-hw/archive/master.tar.gz -O rpi-hw.tar.gz
tar -zxvf rpi-hw.tar.gz
cd Rpi-hw*
cmake . -DCMAKE_INSTALL_PREFIX=/usr
make
sudo make install
cd ../
sudo rm -rf Rpi-hw
rm rpi-hw.tar.gz
Haven't tested it yet and I probably missed something there, but it took me literally 2 minutes to copy and paste that from the install page.
I'm curious why you don't have some sort of bashfile installer for this to make it easier for newer users. Would you accept a PR for this?
For example, this could be done:
Haven't tested it yet and I probably missed something there, but it took me literally 2 minutes to copy and paste that from the install page.