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
version '7.6.1'
sha256 'c8b6451c3ad9fa40ea2711cb3521a81227ec8c0c093bd1b278e65f9bde19260e'
cask "intel-haxm" do
version "7.6.1"
sha256 "c8b6451c3ad9fa40ea2711cb3521a81227ec8c0c093bd1b278e65f9bde19260e"
# 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"
appcast 'https://github.com/intel/haxm/releases.atom'
name 'Intel HAXM'
homepage 'https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager'
appcast "https://github.com/intel/haxm/releases.atom"
name "Intel HAXM"
homepage "https://software.intel.com/en-us/android/articles/intel-hardware-accelerated-execution-manager"
depends_on macos: '>= :yosemite'
depends_on macos: ">= :yosemite"
installer script: {
executable: 'silent_install.sh',
sudo: true,
}
executable: "silent_install.sh",
sudo: true,
}
uninstall pkgutil: 'com.intel.kext.haxm.*',
uninstall pkgutil: "com.intel.kext.haxm.*",
script: {
sudo: true,
must_succeed: true,
executable: 'silent_install.sh',
args: ['-u'],
}
sudo: true,
must_succeed: true,
executable: "silent_install.sh",
args: ["-u"],
}
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