homebrew-cask/Casks/p/pixelsnap.rb

35 lines
908 B
Ruby

cask "pixelsnap" do
version "2.5.4"
sha256 "cc87e808901c88aa8cf7ac4a068655c89c52b4ddbb8c0ea667cbcf0247a6bcbb"
url "https://updates.getpixelsnap.com/v#{version.major}/PixelSnap-#{version.major}-#{version}.dmg"
name "PixelSnap"
desc "Screen measuring tool"
homepage "https://getpixelsnap.com/"
livecheck do
url "https://updates.getpixelsnap.com/v#{version.major}/appcast.xml"
strategy :sparkle do |items|
items.map do |item|
next if item.version.blank?
item.version
end
end
end
auto_updates true
depends_on macos: ">= :high_sierra"
app "PixelSnap #{version.major}.app"
uninstall quit: "pl.maketheweb.pixelsnap2"
zap trash: [
"~/Library/Application Support/PixelSnap",
"~/Library/Caches/SentryCrash/PixelSnap 2",
"~/Library/Caches/pl.maketheweb.pixelsnap2",
"~/Library/Preferences/pl.maketheweb.pixelsnap2.plist",
]
end