homebrew-cask/Casks/bitcoin-core.rb

22 lines
700 B
Ruby

cask 'bitcoin-core' do
version '0.16.0'
sha256 'df0036bae9f40536095908c9944ed66c0946f178ae8ef07639caf25a390b2ee7'
# bitcoin.org was verified as official when first introduced to the cask
url "https://bitcoin.org/bin/bitcoin-core-#{version}/bitcoin-#{version}-osx.dmg"
name 'Bitcoin Core'
homepage 'https://bitcoincore.org/'
conflicts_with cask: 'bitcoin-xt'
depends_on macos: '>= :mountain_lion'
# Renamed for consistency: app name is different in the Finder and in a shell.
app 'Bitcoin-Qt.app', target: 'Bitcoin Core.app'
preflight do
set_permissions "#{staged_path}/Bitcoin-Qt.app", '0755'
end
zap trash: '~/Library/Preferences/org.bitcoin.Bitcoin-Qt.plist'
end