mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
954 B
Ruby
30 lines
954 B
Ruby
cask "mathpix-snipping-tool" do
|
|
version "3.4.5.2"
|
|
sha256 "23a3554b79c6a6fdf41ae8ad17fd83c5f84359b5d1bf76faf7cb8f417a838b0c"
|
|
|
|
url "https://mathpix.com/dmg/SnippingTool-v#{version}.dmg"
|
|
name "Mathpix Snipping Tool"
|
|
desc "Scanner app for math and science"
|
|
homepage "https://mathpix.com/"
|
|
|
|
livecheck do
|
|
url "https://mathpix.com/appcast.xml"
|
|
strategy :sparkle do |item|
|
|
item.url[/SnippingTool[._-]v?(\d+(?:\.\d+)+)\.dmg/i, 1]
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "Mathpix Snipping Tool.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.mathpix.snipping-tool-noappstore",
|
|
"~/Library/Caches/com.crashlytics.data/com.mathpix.snipping-tool-noappstore",
|
|
"~/Library/Caches/com.mathpix.snipping-tool-noappstore",
|
|
"~/Library/Caches/io.fabric.sdk.mac.data/com.mathpix.snipping-tool-noappstore",
|
|
"~/Library/Preferences/com.mathpix.snipping-tool-noappstore.plist",
|
|
]
|
|
end
|