mirror of
https://github.com/donl/homebrew-cask-versions.git
synced 2026-07-17 06:16:47 -06:00
15 lines
410 B
Ruby
15 lines
410 B
Ruby
class Flux < Cask
|
|
version 'latest'
|
|
sha256 :no_check
|
|
|
|
url 'https://justgetflux.com/mac/Flux.zip'
|
|
appcast 'https://justgetflux.com/mac/macflux.xml'
|
|
homepage 'http://justgetflux.com'
|
|
|
|
link 'Flux.app'
|
|
|
|
after_install do
|
|
# Don't ask to move the app bundle to /Applications
|
|
system '/usr/bin/defaults', 'write', 'org.herf.Flux', 'moveToApplicationsFolderAlertSuppress', '-bool', 'true'
|
|
end
|
|
end
|