bitcoin-core: Update 23.0, add arm build (#122472)

* bitcoin-core: Update to 23.0

* bitcoin-core: Add arm build
This commit is contained in:
Nicolas Thumann 2022-04-25 20:31:44 +02:00 committed by GitHub
parent 382de6323d
commit 8276e9e4ec
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 3 deletions

View File

@ -1,8 +1,15 @@
cask "bitcoin-core" do
version "22.0"
sha256 "3b3e2680f7d9304c13bfebaf6445ada40d72324b4b3e0a07de9db807389a6c5b"
arch = Hardware::CPU.intel? ? "x86_64" : "arm64"
url "https://bitcoincore.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-osx-signed.dmg"
version "23.0"
if Hardware::CPU.intel?
sha256 "52eefbaf8cfd292822e470a48a51e1eb51081d43a0a16db7441f34a017ff6097"
else
sha256 "a3059280451d17a77d2260e4671c884be93a14dbff6b6cd19a3c9c8c54421e97"
end
url "https://bitcoincore.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-#{arch}-apple-darwin.dmg"
name "Bitcoin Core"
desc "Bitcoin client and wallet"
homepage "https://bitcoincore.org/"