mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
27 lines
723 B
Ruby
27 lines
723 B
Ruby
cask "shottr" do
|
|
version "1.7.2"
|
|
sha256 "f0a3d8cc86758e22f96790c59cc449d1afd6e82e79e0684d965618e71cf92e4c"
|
|
|
|
url "https://shottr.cc/dl/Shottr-#{version}.dmg"
|
|
name "Shottr"
|
|
desc "Screenshot measurement and annotation tool"
|
|
homepage "https://shottr.cc/"
|
|
|
|
livecheck do
|
|
url "https://shottr.cc/newversion.html"
|
|
regex(/href=.*?Shottr[._-]v?(\d+(?:\.\d+)+)\.dmg/i)
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :catalina"
|
|
|
|
app "Shottr.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/cc.ffitch.shottr",
|
|
"~/Library/Application Scripts/cc.ffitch.shottr-LaunchAtLoginHelper",
|
|
"~/Library/Containers/cc.ffitch.shottr",
|
|
"~/Library/Containers/cc.ffitch.shottr-LaunchAtLoginHelper",
|
|
]
|
|
end
|