homebrew-core/Formula/ethereum.rb
2018-11-01 22:44:28 +01:00

43 lines
1.5 KiB
Ruby

class Ethereum < Formula
desc "Official Go implementation of the Ethereum protocol"
homepage "https://ethereum.github.io/go-ethereum/"
url "https://github.com/ethereum/go-ethereum/archive/v1.8.17.tar.gz"
sha256 "46447764285829ab9500f272f8fc1d49a5e0cd886944ada9ac67431b403a72a6"
head "https://github.com/ethereum/go-ethereum.git"
bottle do
cellar :any_skip_relocation
sha256 "8c7d197724574bbf61ccfa4a8d1b35521ce78bffd357876bb81bbaeb7b5453a5" => :mojave
sha256 "909c7ded8047003fd33ea76366f087e2a3115e745f82967b1b6d3a0f814eba25" => :high_sierra
sha256 "5ee1ca0abdd6051a226519b69cc676cd3985e88d5cb874f64fc3342619a753af" => :sierra
end
depends_on "go" => :build
def install
system "make", "all"
bin.install Dir["build/bin/*"]
end
test do
(testpath/"genesis.json").write <<~EOS
{
"config": {
"homesteadBlock": 10
},
"nonce": "0",
"difficulty": "0x20000",
"mixhash": "0x00000000000000000000000000000000000000647572616c65787365646c6578",
"coinbase": "0x0000000000000000000000000000000000000000",
"timestamp": "0x00",
"parentHash": "0x0000000000000000000000000000000000000000000000000000000000000000",
"extraData": "0x",
"gasLimit": "0x2FEFD8",
"alloc": {}
}
EOS
system "#{bin}/geth", "--datadir", "testchain", "init", "genesis.json"
assert_predicate testpath/"testchain/geth/chaindata/000001.log", :exist?,
"Failed to create log file"
end
end