From bf2ac5acc57def2b57454872f8cb493df01d44a7 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:01:35 +0200 Subject: Added install script --- install.sh | 48 ++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 48 insertions(+) create mode 100755 install.sh (limited to 'install.sh') diff --git a/install.sh b/install.sh new file mode 100755 index 000000000..4526eb002 --- /dev/null +++ b/install.sh @@ -0,0 +1,48 @@ +#!/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 sumbodule update + +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..." -- cgit v1.2.3 From e46e7e7a9cd42016c24d15b2a0b7f01cdb059740 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:04:46 +0200 Subject: Added install script --- install.sh | 49 +++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 install.sh (limited to 'install.sh') 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..." -- cgit v1.2.3 From cad98dc4d54c37dc2098b781d8f21b1ba5da23bd Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:06:04 +0200 Subject: update --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index d9151f27b..d8d0f5520 100644 --- a/install.sh +++ b/install.sh @@ -46,4 +46,4 @@ fi go install -echo "done..." +echo "done. Please run $exe :-)" -- cgit v1.2.3 From 214721ca0155d872a355991506149fdf7e018ad5 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:07:20 +0200 Subject: update --- install.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index d8d0f5520..fe80a6956 100644 --- a/install.sh +++ b/install.sh @@ -26,14 +26,18 @@ if [ $? != 0 ]; then exit fi +echo "serpent-go" cd $GOPATH/src/github.com/obscuren/mutan + +echo "init submodule" git submodule init git submodule update -echo "git checkout $branch" +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 -- cgit v1.2.3 From d57b7e8d5fd59007e7fc42132de5cc9459a2bc71 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:25:17 +0200 Subject: Fix for installer --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'install.sh') diff --git a/install.sh b/install.sh index fe80a6956..fc4724217 100644 --- a/install.sh +++ b/install.sh @@ -27,7 +27,7 @@ if [ $? != 0 ]; then fi echo "serpent-go" -cd $GOPATH/src/github.com/obscuren/mutan +cd $GOPATH/src/github.com/obscuren/serpent-go echo "init submodule" git submodule init -- cgit v1.2.3 From 1b74b98f90d6641b2cd18c60dc9b5829a9870d86 Mon Sep 17 00:00:00 2001 From: obscuren Date: Thu, 26 Jun 2014 23:31:07 +0200 Subject: Check if go install succeed --- install.sh | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'install.sh') diff --git a/install.sh b/install.sh index fc4724217..9719a1afc 100644 --- a/install.sh +++ b/install.sh @@ -49,5 +49,9 @@ else fi go install +if [ $? == 0 ]; then + echo "go install failed" + exit +fi echo "done. Please run $exe :-)" -- cgit v1.2.3