mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
15 lines
461 B
Ruby
15 lines
461 B
Ruby
class Bartender < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'http://www.macbartender.com/Demo/Bartender.zip'
|
|
appcast 'http://www.macbartender.com/updates/updates.php'
|
|
homepage 'http://www.macbartender.com/'
|
|
|
|
link 'Bartender.app'
|
|
|
|
after_install do
|
|
# Don't ask to move the app bundle to /Applications
|
|
system '/usr/bin/defaults', 'write', 'com.surteesstudios.Bartender', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|