diff options
author | obscuren <geffobscura@gmail.com> | 2014-06-27 05:04:46 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2014-06-27 05:04:46 +0800 |
commit | e46e7e7a9cd42016c24d15b2a0b7f01cdb059740 (patch) | |
tree | 267333d0432f12a4cc62b9152aaa8d0fe5e1b159 | |
parent | 42414cadaa695c786093da393f389c276432a2b4 (diff) | |
download | dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar.gz dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar.bz2 dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar.lz dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar.xz dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.tar.zst dexon-e46e7e7a9cd42016c24d15b2a0b7f01cdb059740.zip |
Added install script
-rw-r--r-- | install.sh | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/install.sh b/install.sh new file mode 100644 index 000000000..d9151f27b --- /dev/null +++ b/install.sh @@ -0,0 +1,49 @@ +#!/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 + +cd $GOPATH/src/github.com/obscuren/mutan +git submodule init +git submodule update + +echo "git checkout $branch" +cd $GOPATH/src/github.com/ethereum/eth-go +git checkout $branch + +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 + +echo "done..." |