homebrew-cask-versions/Casks/launchbar.rb
jake romer 869e9f1a4f Update LaunchBar formula to version 6.3.
The LaunchBar formula is currently failing on post-mountain-lion versions of OS X because LaunchBar 6.3 has been released and the link to 6.2 is no broken. Fixes this updating the URL and SHA.
2015-04-20 12:33:22 -04:00

27 lines
1 KiB
Ruby

cask :v1 => 'launchbar' do
if MacOS.release <= :mountain_lion
version '5.6.4'
sha256 '22a1ec0c10de940e5efbcccd18b8b048d95fb7c63213a01c7976a76d6be69a4d'
url "http://www.obdev.at/downloads/launchbar/legacy/LaunchBar-#{version}.dmg"
else
version '6.3'
sha256 '0ee5bacc02dc5213fc80934fed66124a718fd72d654ce3a4365cc694d76c1578'
url "http://www.obdev.at/downloads/launchbar/LaunchBar-#{version}.dmg"
end
name 'LaunchBar'
homepage 'http://www.obdev.at/products/launchbar/'
license :commercial
app 'LaunchBar.app'
zap :delete => [
'~/Library/Preferences/at.obdev.LaunchBar.plist',
'~/Library/Application Support/LaunchBar/Configuration.plist',
'~/Library/Application Support/LaunchBar/CustomShortcuts.plist',
# todo unsure if these contain user-created content
# '~/Library/Application Support/LaunchBar/Actions',
# '~/Library/Application Support/LaunchBar/Snippets',
]
end