-
-
Notifications
You must be signed in to change notification settings - Fork 11.5k
Expand file tree
/
Copy pathdarwindumper.rb
More file actions
33 lines (26 loc) · 927 Bytes
/
darwindumper.rb
File metadata and controls
33 lines (26 loc) · 927 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
31
32
33
cask "darwindumper" do
version "3.1.1"
sha256 "b840162363ec8d1b505a158f195c45f7969a99545150825e8d2b9e72f1cf43f5"
url "https://bitbucket.org/blackosx/darwindumper/downloads/DarwinDumper_v#{version}.zip"
name "DarwinDumper"
desc "App to dump system information to aid troubleshooting"
homepage "https://bitbucket.org/blackosx/darwindumper"
livecheck do
url "https://bytebucket.org/blackosx/darwindumper/wiki/DD_AppCast.xml"
strategy :sparkle do |item|
item.short_version.delete_prefix("r")
end
end
disable! date: "2026-09-01", because: :fails_gatekeeper_check
depends_on :macos
app "DarwinDumper.app"
zap trash: [
"~/Library/Caches/com.DarwinDumper",
"~/Library/Preferences/com.DarwinDumper.plist",
"~/Library/Preferences/org.tom.DarwinDumper.plist",
"~/Library/Saved Application State/com.DarwinDumper.savedState",
]
caveats do
requires_rosetta
end
end