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.
25 lines
751 B
Ruby
25 lines
751 B
Ruby
cask "volley" do
|
|
version "1.3.1"
|
|
sha256 "bbc2c8652d89869a48a67b3e3d9b65bf7fd00a5a5919f706dcb00c7b2507bc3c"
|
|
|
|
url "https://s3.amazonaws.com/pieces.volley.app/downloads/Volley-#{version}.dmg",
|
|
verified: "s3.amazonaws.com/pieces.volley.app/"
|
|
name "Volley"
|
|
desc "Asynchronous video messaging app"
|
|
homepage "https://www.volleyapp.com/"
|
|
|
|
livecheck do
|
|
url "https://s3.amazonaws.com/pieces.volley.app/downloads/latest-mac.yml"
|
|
strategy :electron_builder
|
|
end
|
|
|
|
app "Volley.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/Volley",
|
|
"~/Library/Logs/Volley",
|
|
"~/Library/Preferences/com.volleyapp.prod.VolleyElectron.plist",
|
|
"~/Library/Saved Application State/com.volleyapp.prod.VolleyElectron.savedState",
|
|
]
|
|
end
|