homebrew-cask/Casks/bbedit.rb

27 lines
879 B
Ruby

cask 'bbedit' do
if MacOS.version <= :el_capitan
version '12.1.6'
sha256 '23b9fc6ef5c03cbcab041566503c556d5baf56b2ec18f551e6f0e9e6b48dc690'
else
version '12.6'
sha256 '6ff6f8d48429bec98e77eb782aeda9e059f10a82a5c106be6e4b271efc793962'
end
# s3.amazonaws.com/BBSW-download was verified as official when first introduced to the cask
url "https://s3.amazonaws.com/BBSW-download/BBEdit_#{version}.dmg"
appcast 'https://versioncheck.barebones.com/BBEdit.xml'
name 'BBEdit'
homepage 'https://www.barebones.com/products/bbedit/'
auto_updates true
depends_on macos: '>= :el_capitan'
app 'BBEdit.app'
zap trash: [
'~/Library/Application Support/BBEdit',
'~/Library/Preferences/com.barebones.bbedit.plist',
'~/Library/BBEdit',
'~/Library/Caches/com.barebones.bbedit',
]
end