mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
The migration of `orka.rb` and then `o*.rb` has worked well without complaint so: let's move everything else, too.
24 lines
634 B
Ruby
24 lines
634 B
Ruby
cask "pretzel" do
|
|
version "2.12.5"
|
|
sha256 "af086a4be02da8600366a8f330f822bc7c9231dbd89d882e75fa3025d90e3bcf"
|
|
|
|
url "https://download.pretzel.rocks/Pretzel-#{version}-universal-mac.zip"
|
|
name "Pretzel"
|
|
desc "DMCA-safe music for creators"
|
|
homepage "https://www.pretzel.rocks/"
|
|
|
|
livecheck do
|
|
url "https://download.pretzel.rocks/latest-mac.yml"
|
|
strategy :electron_builder
|
|
end
|
|
|
|
app "Pretzel.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/@pretzel-aux",
|
|
"~/Library/Logs/Pretzel",
|
|
"~/Library/Preferences/rocks.pretzel.plist",
|
|
"~/Library/Saved Application State/rocks.pretzel.savedState",
|
|
]
|
|
end
|