2016-04-05 15:43:52 -04:00
|
|
|
#!/usr/bin/env bash
|
2016-04-04 12:19:13 -04:00
|
|
|
# $$\ $$\ $$\ $$\ $$\ $$\ $$$$$$\
|
|
|
|
# $$$\ $$$ | \__| $$$\ $$$ |\__| $$ __$$\
|
|
|
|
# $$$$\ $$$$ | $$$$$$\ $$$$$$\ $$\ $$$$$$$\ $$$$\ $$$$ |$$\ $$$$$$\ $$$$$$\ $$$$$$\ $$$$$$\ \__/ $$ |
|
|
|
|
# $$\$$\$$ $$ | \____$$\ $$ __$$\ $$ |$$ _____|$$\$$\$$ $$ |$$ |$$ __$$\ $$ __$$\ $$ __$$\ $$ __$$\ $$$$$$ |
|
|
|
|
# $$ \$$$ $$ | $$$$$$$ |$$ / $$ |$$ |$$ / $$ \$$$ $$ |$$ |$$ | \__|$$ | \__|$$ / $$ |$$ | \__|$$ ____/
|
|
|
|
# $$ |\$ /$$ |$$ __$$ |$$ | $$ |$$ |$$ | $$ |\$ /$$ |$$ |$$ | $$ | $$ | $$ |$$ | $$ |
|
|
|
|
# $$ | \_/ $$ |\$$$$$$$ |\$$$$$$$ |$$ |\$$$$$$$\ $$ | \_/ $$ |$$ |$$ | $$ | \$$$$$$ |$$ | $$$$$$$$\
|
|
|
|
# \__| \__| \_______| \____$$ |\__| \_______|\__| \__|\__|\__| \__| \______/ \__| \________|
|
|
|
|
# $$\ $$ |
|
|
|
|
# \$$$$$$ |
|
|
|
|
# \______/
|
|
|
|
#
|
|
|
|
# This is an installer script for MagicMirror2. It works well enough
|
|
|
|
# that it can detect if you have Node installed, run a binary script
|
|
|
|
# and then download and run MagicMirror2.
|
2016-04-05 15:52:10 -04:00
|
|
|
sudo apt-get install curl wget build-essential unzip || exit
|
2016-04-04 12:19:13 -04:00
|
|
|
ARM=$(uname -m) # Determine which Pi is running.
|
2016-04-06 16:20:34 +02:00
|
|
|
NODE_LATEST="v5.10.1" # Set the latest version here.
|
2016-04-04 12:19:13 -04:00
|
|
|
DOWNLOAD_URL="https://nodejs.org/dist/latest/node-$NODE_LATEST-linux-$ARM.tar.gz" # Construct the download URL.
|
2016-04-05 15:52:10 -04:00
|
|
|
wget $DOWNLOAD_URL || exit # Download the file given.
|
|
|
|
tar xvf node-$NODE_LATEST-linux-$ARM.tar.gz || exit
|
|
|
|
cd node* || exit
|
|
|
|
sudo cp -R * /usr/local || exit
|
|
|
|
cd .. || exit
|
|
|
|
rm -rf node* || exit
|
2016-04-04 12:19:13 -04:00
|
|
|
# Run Node checks to make sure Node works properly.
|
2016-04-05 15:52:10 -04:00
|
|
|
(curl -sL https://deb.nodesource.com/test | bash -) || exit
|
2016-04-04 12:19:13 -04:00
|
|
|
npm config set loglevel info
|
2016-04-04 13:57:09 -04:00
|
|
|
if [ ! -f package.json ]; then
|
|
|
|
wget https://github.com/nhubbard/MagicMirror/archive/v2-beta.zip
|
|
|
|
unzip v2-beta.zip
|
|
|
|
cd MagicMirror-2-beta
|
|
|
|
fi
|
2016-04-05 15:52:10 -04:00
|
|
|
npm install || exit
|
2016-04-04 12:19:13 -04:00
|
|
|
echo "We're ready! Run `npm start` from the MagicMirror-2-beta directory (not over SSH) and enjoy MagicMirror2!"
|