mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
761 B
Ruby
29 lines
761 B
Ruby
cask "bezel" do
|
|
version "1.3.3"
|
|
sha256 "331c3f763a827f69f1a066e03e2edd177ef061f37b73db1d83d57f5f8adac8e0"
|
|
|
|
url "https://download.nonstrict.eu/bezel/Bezel-#{version}.zip",
|
|
verified: "download.nonstrict.eu/bezel/"
|
|
name "Bezel"
|
|
desc "iOS screen output recorder"
|
|
homepage "https://getbezel.app/"
|
|
|
|
livecheck do
|
|
url "https://download.nonstrict.eu/bezel/appcast.xml"
|
|
strategy :sparkle do |items|
|
|
items.find { |item| item.channel.nil? }&.short_version
|
|
end
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :monterey"
|
|
|
|
app "Bezel.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.nonstrict.Bezel-direct",
|
|
"~/Library/HTTPStorages/com.nonstrict.Bezel-direct",
|
|
"~/Library/Preferences/com.nonstrict.Bezel-direct.plist",
|
|
]
|
|
end
|