aboutsummaryrefslogtreecommitdiffstats
path: root/install.sh
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-07-01 19:45:39 +0800
committerobscuren <geffobscura@gmail.com>2014-07-01 19:45:39 +0800
commit253c23240b8cec56e2bb21072291e2f7ef1a49e9 (patch)
tree64503d09f1120ef2327a8184e46d5ee8bc7090bd /install.sh
parent0ce9003ba77c0552c9058caa55d2fea6711ac18c (diff)
parent098f7f23ce62d3f0c60d30d325576de93795cc4b (diff)
downloaddexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar.gz
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar.bz2
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar.lz
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar.xz
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.tar.zst
dexon-253c23240b8cec56e2bb21072291e2f7ef1a49e9.zip
Merge branch 'feature/keys' of https://github.com/ethersphere/go-ethereum into ethersphere-feature/keys
Conflicts: .gitignore README.md
Diffstat (limited to 'install.sh')
-rwxr-xr-xinstall.sh57
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 :-)"