homebrew-cask/Casks/a/alex313031-thorium.rb

42 lines
1.2 KiB
Ruby

cask "alex313031-thorium" do
arch arm: "ARM", intel: "X64"
version "M120.0.6099.235"
sha256 arm: "d4f43f5fabd22d55db0869fa8cf951da2af71764069139a4c3679bd58f7a246c",
intel: "a088ebdbbbce5957762bf01a393067da54b2ddcc4f93474b8fd44adb2d503d49"
url "https://github.com/Alex313031/Thorium-MacOS/releases/download/#{version}/Thorium_MacOS_#{arch}.dmg",
verified: "github.com/Alex313031/Thorium-MacOS/"
name "Thorium"
desc "Web browser"
homepage "https://thorium.rocks/"
livecheck do
url :url
regex(/^(M?\d+(?:\.\d+)+)$/i)
strategy :github_latest
end
conflicts_with cask: "thorium"
depends_on macos: ">= :high_sierra"
app "Thorium.app"
# shim script (https://github.com/Homebrew/homebrew-cask/issues/18809)
shimscript = "#{staged_path}/thorium.wrapper.sh"
binary shimscript, target: "thorium"
preflight do
File.write shimscript, <<~EOS
#!/bin/bash
exec '#{appdir}/Thorium.app/Contents/MacOS/Thorium' "$@"
EOS
end
zap trash: [
"~/Library/Application Support/Thorium",
"~/Library/Caches/Thorium",
"~/Library/Preferences/org.chromium.Thorium.plist",
"~/Library/Saved Application State/org.chromium.Thorium.savedState",
]
end