#!/bin/bash set -euo pipefail LINUX=false OSX=false if [ "$(uname)" == "Darwin" ]; then OSX=true elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then LINUX=true else echo "Platform detection failed" exit 1 fi SUDO='' if (( $EUID != 0 )); then SUDO='sudo' fi cmd_exists() { command -v "$1" >/dev/null 2>&1 return $? } set +eu GITUSERNAME=$(git config --global --get user.name) if [ -z "$GITUSERNAME" ]; then git config --global user.name "$(whoami)" fi GITEMAIL=$(git config --global --get user.email) if [ -z "$GITEMAIL" ]; then git config --global user.email "$(whoami)@lbry.io" fi set -eu if $LINUX; then INSTALL="$SUDO apt-get install --no-install-recommends -y" $INSTALL build-essential libssl-dev libffi-dev libgmp3-dev python2.7-dev libsecret-1-dev curl elif $OSX && ! cmd_exists brew ; then /usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" fi if ! cmd_exists python; then if $LINUX; then $INSTALL python2.7 elif $OSX; then brew install python else echo "python2.7 required" exit 1 fi fi PYTHON_VERSION=$(python -c 'import sys; print(".".join(map(str, sys.version_info[:2])))') if [ "$PYTHON_VERSION" != "2.7" ]; then echo "Python 2.7 required" exit 1 fi if ! cmd_exists pip; then if $LINUX; then $INSTALL python-pip elif $OSX; then $SUDO easy_install pip else echo "pip required" exit 1 fi $SUDO pip install --upgrade pip fi if $LINUX && [ "$(pip list --format=columns | grep setuptools | wc -l)" -ge 1 ]; then $SUDO pip install setuptools fi if ! cmd_exists virtualenv; then $SUDO pip install virtualenv fi if ! cmd_exists node; then if $LINUX; then curl -sL https://deb.nodesource.com/setup_8.x | $SUDO -E bash - $INSTALL nodejs elif $OSX; then brew install node else echo "node required" exit 1 fi fi if ! cmd_exists yarn; then if $LINUX; then curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | $SUDO apt-key add - echo "deb https://dl.yarnpkg.com/debian/ stable main" | $SUDO tee /etc/apt/sources.list.d/yarn.list $SUDO apt-get update $SUDO apt-get install yarn elif $OSX; then brew install yarn else echo "yarn required" exit 1 fi fi if ! cmd_exists unzip; then if $LINUX; then $INSTALL unzip else echo "unzip required" exit 1 fi fi