-
-
Save MiteshShah/62cd0923b9068a927dae 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
#!/bin/bash | |
# Error handling | |
function OwnError() | |
{ | |
echo -e "[ `date` ] $(tput setaf 1)$@$(tput sgr0)" | |
exit $2 | |
} | |
# Repository for rethinkdb | |
echo "Setup Repository For Rethinkdb, Please Wait..." | |
source /etc/lsb-release \ | |
&& echo "deb http://download.rethinkdb.com/apt $DISTRIB_CODENAME main" > /etc/apt/sources.list.d/rethinkdb.list \ | |
&& wget -qO- http://download.rethinkdb.com/apt/pubkey.gpg | sudo apt-key add - \ | |
|| OwnError "Unable to setup rethinkdb repository, exit status = " $? | |
# Install wget and curl | |
echo "Executing: apt-get update, Please wait..." | |
apt-get update \ | |
|| OwnError "Unable to execute apt-get update command, exit status = " $? | |
echo "Installing required packages, Please wait..." | |
apt-get -y install wget curl git rethinkdb android-tools-adb python autoconf automake libtool build-essential ninja-build libzmq3-dev libprotobuf-dev git graphicsmagick \ | |
|| OwnError "Unable to install required packages, exit status = " $? | |
echo "Donwloading Node.js, Please Wait..." | |
cd /tmp && \ | |
wget -c https://nodejs.org/dist/v0.12.7/node-v0.12.7.tar.gz \ | |
|| OwnError "Unable to download Node.js, exit status = " $? | |
echo "Installing Node.js, Please Wait..." | |
tar xzf node-v*.tar.gz && \ | |
rm node-v*.tar.gz && \ | |
cd node-v* && \ | |
export CXX="g++ -Wno-unused-local-typedefs" && \ | |
./configure --ninja && \ | |
make && \ | |
make install && \ | |
rm -rf /tmp/node-v* && \ | |
cd /tmp && \ | |
/usr/local/lib/node_modules/npm/node_modules/node-gyp/bin/node-gyp.js install \ | |
|| OwnError "Unable to install Node.js, exit status = " $? | |
echo "Installing Bower, Please Wait..." | |
npm install -g bower \ | |
|| OwnError "Unable to install Bower, exit status = " $? | |
echo "Installing ZeroMQ, Please wait..." | |
cd /opt | |
wget http://download.zeromq.org/zeromq-4.1.2.tar.gz \ | |
&& tar -zxvf zeromq-4.1.2.tar.gz \ | |
&& cd zeromq-4.1.2 \ | |
&& ./configure --without-libsodium \ | |
&& make \ | |
&& make install \ | |
|| OwnError "Unable to install ZeroMQ, exit status = " $? | |
echo "Setup Protocol Buffers, Please wait..." | |
cd /opt \ | |
&& git clone https://github.com/google/protobuf.git \ | |
&& cd protobuf \ | |
&& ./autogen.sh \ | |
&& ./configure \ | |
&& make \ | |
&& make install \ | |
|| OwnError "Unable to Setup Protocol Buffers, exit status = " $? | |
echo "Installing STF, Please wait..." | |
npm install -g stf \ | |
|| OwnError "Unable to Installing STF, exit status = " $? |
You need to change git version stf is not supporting anymore this node version. And on ubuntu 16.04 protobuf is not clonining due to gnu_tls issue.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
node js installation not working in the script. I m not able to setup.