phinze/homebrew-cask

View on GitHub
Casks/e/electron.rb

Summary

Maintainability
A
0 mins
Test Coverage
cask "electron" do
  arch arm: "arm64", intel: "x64"

  version "32.0.2"
  sha256 arm:   "de8b3c3e5278d45aa8fea9e9c261ce5c6daa3d0f569376014896fd03ba844b5f",
         intel: "a9a8b30a1847236dca495041644cea27a08823bf6a5d314bd21a8fbe92b91d67"

  url "https://github.com/electron/electron/releases/download/v#{version}/electron-v#{version}-darwin-#{arch}.zip",
      verified: "github.com/electron/electron/"
  name "Electron"
  desc "Build desktop apps with JavaScript, HTML, and CSS"
  homepage "https://electronjs.org/"

  livecheck do
    url :url
    strategy :github_latest
  end

  app "Electron.app"
  binary "#{appdir}/Electron.app/Contents/MacOS/Electron", target: "electron"

  zap trash: [
    "~/Library/Application Support/Electron",
    "~/Library/Caches/Electron",
    "~/Library/Preferences/com.github.electron.helper.plist",
    "~/Library/Preferences/com.github.electron.plist",
  ]
end