-
-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Expand file tree
/
Copy pathmural.rb
More file actions
30 lines (25 loc) · 829 Bytes
/
mural.rb
File metadata and controls
30 lines (25 loc) · 829 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
cask "mural" do
version "3.0.4"
sha256 "7f92a2eb91e5824d6a5cd3eee8619cab2edb4fdce0da5a2bed7cf85a0a4846c9"
url "https://download.mural.co/mac-app/Mural-#{version}.dmg"
name "MURAL"
desc "Visual online collaboration platform"
homepage "https://mural.co/"
livecheck do
url "https://download.mural.co/mac-app/latest-mac.yml"
strategy :electron_builder
end
auto_updates true
depends_on :macos
app "MURAL.app"
zap trash: [
"~/Library/Application Support/Mural for macOS",
"~/Library/Application Support/murally-electron",
"~/Library/Caches/mural-updater",
"~/Library/Logs/Mural for macOS",
"~/Library/Logs/MURAL",
"~/Library/Logs/murally-electron",
"~/Library/Preferences/co.mural.macOS.plist",
"~/Library/Saved Application State/co.mural.macOS.savedState",
]
end