homebrew-cask/Casks/e/electron.rb

29 lines
902 B
Ruby

cask "electron" do
arch arm: "arm64", intel: "x64"
version "28.0.0"
sha256 arm: "d64947fee370a3b111f170399969977959848f2a2f544a1ae5dc081fc2df75cf",
intel: "a5fdc70519b2c17a708920af2b998fc067ff0a18ba9f97d690cfab6bac23bd7a"
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