mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
28 lines
718 B
Ruby
28 lines
718 B
Ruby
cask "icab" do
|
|
version "6.2.1"
|
|
sha256 "92abc217b94e9c3824c029988a8d1dcf8751c4728e1f0879eb02ea678bfdd887"
|
|
|
|
url "https://icab.clauss-net.de/icab/iCab_#{version}.zip",
|
|
verified: "icab.clauss-net.de/icab/"
|
|
name "iCab"
|
|
desc "Alternative web browser"
|
|
homepage "https://www.icab.de/"
|
|
|
|
livecheck do
|
|
url "https://www.icab.de/download.html"
|
|
regex(/iCab\sv?(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "iCab #{version}/iCab.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/iCab",
|
|
"~/Library/Caches/com.apple.helpd/Generated/iCab.help*",
|
|
"~/Library/Caches/de.icab.iCab",
|
|
"~/Library/Preferences/de.icab.iCab.plist",
|
|
"~/Library/Preferences/iCab",
|
|
]
|
|
end
|