From 663626f06d79aa4d3d3b17e0391897c852658a28 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Sat, 20 Sep 2014 16:26:08 -0400 Subject: Move scripts inside tests directory. Fixed https://github.com/sudar/Arduino-Makefile/issues/260 --- script/bootstrap/arduino.sh | 44 -------------------------------------------- 1 file changed, 44 deletions(-) delete mode 100644 script/bootstrap/arduino.sh (limited to 'script/bootstrap/arduino.sh') diff --git a/script/bootstrap/arduino.sh b/script/bootstrap/arduino.sh deleted file mode 100644 index 3c7e9d7..0000000 --- a/script/bootstrap/arduino.sh +++ /dev/null @@ -1,44 +0,0 @@ -set -e -BOOTSTRAP_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" -source $BOOTSTRAP_DIR/common.sh - -echo "Installing dependencies for building for the Arduino" - -if [ -z "$ARDUINO_DIR" ] || ! test -e $ARDUINO_DIR || [ $OS == "cygwin" ]; then - - echo "Installing Arduino..." - - ARDUINO_BASENAME="arduino-1.0.5" - if [ $OS == "cygwin" ]; then - ARDUINO_FILE="$ARDUINO_BASENAME-r2-windows".zip - EXTRACT_COMMAND="unzip -q" - elif [ $OS == "mac" ]; then - ARDUINO_FILE="$ARDUINO_BASENAME-macosx".zip - EXTRACT_COMMAND="unzip -q" - else - ARDUINO_FILE="$ARDUINO_BASENAME-linux64".tgz - EXTRACT_COMMAND="tar -xzf" - fi - - ARDUINO_URL=http://arduino.googlecode.com/files/$ARDUINO_FILE - - _pushd $DEPENDENCIES_FOLDER - if ! test -e $ARDUINO_FILE - then - echo "Downloading Arduino IDE..." - download $ARDUINO_URL $ARDUINO_FILE - fi - - if ! test -d $ARDUINO_BASENAME - then - echo "Installing Arduino to local folder..." - $EXTRACT_COMMAND $ARDUINO_FILE - echo "Arduino installed" - fi - - _popd - -fi - -echo -echo "${bldgreen}Arduino dependencies installed.$txtrst" -- cgit v1.2.3