forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdebookee.rb
34 lines (28 loc) · 955 Bytes
/
debookee.rb
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
31
32
33
34
cask "debookee" do
version "8.1.1,3238"
sha256 :no_check
url "https://www.iwaxx.com/debookee/debookee.zip",
verified: "iwaxx.com/debookee/"
name "Debookee"
desc "Network traffic analyzer"
homepage "https://debookee.com/"
livecheck do
url "https://www.iwaxx.com/debookee/appcast.php"
strategy :sparkle
end
auto_updates true
depends_on macos: ">= :mojave"
app "Debookee.app"
uninstall delete: "/Library/PrivilegedHelperTools/com.iwaxx.Debookee.PacketTool",
launchctl: "com.iwaxx.Debookee.PacketTool"
zap trash: [
"~/.debookee",
"~/Library/Application Support/com.iwaxx.Debookee",
"~/Library/Caches/com.iwaxx.Debookee",
"~/Library/Cookies/com.iwaxx.Debookee.binarycookies",
"~/Library/Logs/Debookee",
"~/Library/Preferences/com.iwaxx.Debookee.plist",
"~/Library/Saved Application State/com.iwaxx.Debookee.savedState",
"~/Library/WebKit/com.iwaxx.Debookee",
]
end