* Update bcm install to use build
--- /dev/null
+#!/bin/bash
+
+mkdir -p build
+pushd build || exit 65
+
+git clone https://github.com/WiringPi/WiringPi.git
+pushd WiringPi || exit 66
+
+# build the package
+./build debian || exit 1
+mv debian-template/wiringpi-*.deb .
+
+# install it
+sudo apt install ./wiringpi-*.deb
+popd || exit 67
+popd || exit 68
+
#!/bin/bash
+mkdir -p build
+pushd build || exit 67
+
# install bcm2835
# check for latest version at http://www.airspayce.com/mikem/bcm2835/
wget http://www.airspayce.com/mikem/bcm2835/bcm2835-1.75.tar.gz
sudo make check || exit 3
sudo make install
popd || exit 66
+popd || exit 68