diff options
author | Maran <maran.hidskes@gmail.com> | 2014-07-01 21:26:18 +0800 |
---|---|---|
committer | Maran <maran.hidskes@gmail.com> | 2014-07-01 21:26:18 +0800 |
commit | d294dedfad754fdb6afca22e3bb116e3d07febcd (patch) | |
tree | e6ef5a00d4efbaece23878984ca7a62942a43190 /install.sh | |
parent | e798294a4b2049dc59df6ad4a3bc67c00916cb9f (diff) | |
parent | 114e715e3c9a547da28b385b85fa69514ae40636 (diff) | |
download | dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar.gz dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar.bz2 dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar.lz dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar.xz dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.tar.zst dexon-d294dedfad754fdb6afca22e3bb116e3d07febcd.zip |
Merge branch 'develop' of github.com:ethereum/eth-go into develop
Diffstat (limited to 'install.sh')
-rwxr-xr-x | install.sh | 57 |
1 files changed, 57 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100755 index 000000000..9719a1afc --- /dev/null +++ b/install.sh @@ -0,0 +1,57 @@ +#!/bin/sh + +if [ "$1" == "" ]; then + echo "Usage $0 executable branch ethereum develop" + echo "executable ethereum or ethereal" + echo "branch develop or master" + exit +fi + +exe=$1 +branch=$2 + +# Test if go is installed +command -v go >/dev/null 2>&1 || { echo >&2 "Unable to find 'go'. This script requires go."; exit 1; } + +# Test if $GOPATH is set +if [ "$GOPATH" == "" ]; then + echo "\$GOPATH not set" + exit +fi + +echo "go get -u -d github.com/ethereum/go-ethereum/$exe" +go get -v -u -d github.com/ethereum/go-ethereum/$exe +if [ $? != 0 ]; then + echo "go get failed" + exit +fi + +echo "serpent-go" +cd $GOPATH/src/github.com/obscuren/serpent-go + +echo "init submodule" +git submodule init +git submodule update + +echo "eth-go" +cd $GOPATH/src/github.com/ethereum/eth-go +git checkout $branch + +echo "go-ethereum" +cd $GOPATH/src/github.com/ethereum/go-ethereum/$exe +git checkout $branch + +if [ "$exe" == "ethereal" ]; then + echo "Building ethereal GUI. Assuming Qt is installed. If this step" + echo "fails; please refer to: https://github.com/ethereum/go-ethereum/wiki/Building-Ethereum(Go)" +else + echo "Building ethereum CLI." +fi + +go install +if [ $? == 0 ]; then + echo "go install failed" + exit +fi + +echo "done. Please run $exe :-)" |