forked from Homebrew/homebrew-cask
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblueharvest.rb
27 lines (21 loc) · 916 Bytes
/
blueharvest.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
cask "blueharvest" do
version "8.0.10"
sha256 "744fd728803860f62d4dcb79d5b5187effbebb4d94e9ffee18a5d4d398625a3a"
url "https://zeroonetwenty.com/blueharvest/downloads/BlueHarvest#{version.no_dots}.dmg"
name "BlueHarvest"
desc "Remove metadata files from external drives"
homepage "https://zeroonetwenty.com/blueharvest/"
livecheck do
url "https://zeroonetwenty.com/blueharvest/release-notes.html"
regex(/>\s*Version\s+(\d+(?:\.\d+)+)/i)
end
depends_on macos: ">= :catalina"
app "BlueHarvest.app"
uninstall delete: "/Library/PrivilegedHelperTools/com.zeroonetwenty.BlueHarvestHelper#{version.major}",
launchctl: "com.zeroonetwenty.BlueHarvestHelper#{version.major}",
quit: "com.zeroonetwenty.BlueHarvest5"
zap trash: [
"~/Library/Caches/com.zeroonetwenty.BlueHarvest5",
"~/Library/Preferences/com.zeroonetwenty.BlueHarvest5.plist",
]
end