cask "openwebstart" do arch arm: "aarch64", intel: "x64" version "1.14.0" sha256 arm: "f085f2fce8099119ac15b9db92b8fd6d07ef1e13062a3b2db299429f82c2d2b8", intel: "9554f92784641f8063611113874b6d446b0ba138130e2c43e8b7d86df1b9ce40" url "https://github.com/karakun/OpenWebStart/releases/download/v#{version}/OpenWebStart_macos-#{arch}_#{version.dots_to_underscores}.dmg" name "OpenWebStart" desc "Tool to run Java Web Start-based applications after the release of Java 11" homepage "https://openwebstart.com/" livecheck do url :url strategy :github_latest end depends_on :macos installer script: { executable: "#{staged_path}/OpenWebStart Installer.app/Contents/MacOS/JavaApplicationStub", args: ["-q"], sudo: true, print_stderr: false, } uninstall_preflight_steps do set_ownership "/Applications/OpenWebStart" end uninstall \ script: { executable: "/Applications/OpenWebStart/OpenWebStart Uninstaller.app/Contents/MacOS/JavaApplicationStub", args: ["-q"], sudo: true, print_stderr: false, }, delete: "/Applications/OpenWebStart" zap trash: [ "~/.cache/icedtea-web", "~/.config/icedtea-web", ] end