intel-haxm: fix RuboCop style.

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

View File

@ -1,29 +1,29 @@
cask 'intel-haxm' do cask "intel-haxm" do
version '7.6.1' version "7.6.1"
sha256 'c8b6451c3ad9fa40ea2711cb3521a81227ec8c0c093bd1b278e65f9bde19260e' sha256 "c8b6451c3ad9fa40ea2711cb3521a81227ec8c0c093bd1b278e65f9bde19260e"
# github.com/intel/haxm/ was verified as official when first introduced to the cask # github.com/intel/haxm/ was verified as official when first introduced to the cask
url "https://github.com/intel/haxm/releases/download/v#{version}/haxm-macosx_v#{version.dots_to_underscores}.zip" url "https://github.com/intel/haxm/releases/download/v#{version}/haxm-macosx_v#{version.dots_to_underscores}.zip"
appcast 'https://github.com/intel/haxm/releases.atom' appcast "https://github.com/intel/haxm/releases.atom"
name 'Intel HAXM' name "Intel HAXM"
homepage 'https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager' homepage "https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager"
depends_on macos: '>= :yosemite' depends_on macos: ">= :yosemite"
installer script: { installer script: {
executable: 'silent_install.sh', executable: "silent_install.sh",
sudo: true, sudo: true,
} }
uninstall pkgutil: 'com.intel.kext.haxm.*', uninstall pkgutil: "com.intel.kext.haxm.*",
script: { script: {
sudo: true, sudo: true,
must_succeed: true, must_succeed: true,
executable: 'silent_install.sh', executable: "silent_install.sh",
args: ['-u'], args: ["-u"],
} }
caveats do caveats do
license 'https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager-end-user-license-agreement-macosx' license "https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager-end-user-license-agreement-macosx"
end end
end end