blockbook/contrib/backends/ethereum/Makefile
2018-07-19 13:26:36 +02:00

14 lines
504 B
Makefile

GETH_VERSION := 1.8.10-eae63c51
all:
wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-${GETH_VERSION}.tar.gz
wget https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-${GETH_VERSION}.tar.gz.asc
gpg --verify geth-linux-amd64-${GETH_VERSION}.tar.gz.asc
tar -xf geth-linux-amd64-${GETH_VERSION}.tar.gz
mv geth-linux-amd64-${GETH_VERSION} ethereum
clean:
rm -rf ethereum
rm -f geth-linux-amd64-${GETH_VERSION}.tar.gz
rm -f geth-linux-amd64-${GETH_VERSION}.tar.gz.asc