displaycal: fix RuboCop style.

See https://github.com/Homebrew/brew/pull/7867.
This commit is contained in:
Mike McQuaid 2020-07-27 10:22:12 +01:00
parent 853a73cfa3
commit d36fb2d8de
No known key found for this signature in database
GPG Key ID: 48A898132FD8EE70
1 changed files with 12 additions and 12 deletions

View File

@ -1,23 +1,23 @@
cask 'displaycal' do
version '3.8.9.3'
sha256 '3e3f4a506c3ffc1e2004d57c6cd521d6cacb1bb6a71f9e3fa4cd81ab6ad4f31a'
cask "displaycal" do
version "3.8.9.3"
sha256 "3e3f4a506c3ffc1e2004d57c6cd521d6cacb1bb6a71f9e3fa4cd81ab6ad4f31a"
# sourceforge.net/dispcalgui/ was verified as official when first introduced to the cask
url "https://downloads.sourceforge.net/dispcalgui/release/#{version}/DisplayCAL-#{version}.pkg"
appcast 'https://sourceforge.net/projects/dispcalgui/rss?path=/release'
name 'DisplayCAL'
homepage 'https://displaycal.net/'
appcast "https://sourceforge.net/projects/dispcalgui/rss?path=/release"
name "DisplayCAL"
homepage "https://displaycal.net/"
auto_updates true
depends_on formula: 'argyll-cms'
depends_on formula: "argyll-cms"
pkg "DisplayCAL-#{version}.pkg"
uninstall pkgutil: 'net.displaycal.*.DisplayCAL.*'
uninstall pkgutil: "net.displaycal.*.DisplayCAL.*"
zap trash: [
'~/Library/Application Support/dispcalGUI',
'~/Library/Logs/dispcalGUI',
'~/Library/Preferences/dispcalGUI',
]
"~/Library/Application Support/dispcalGUI",
"~/Library/Logs/dispcalGUI",
"~/Library/Preferences/dispcalGUI",
]
end