Files
homebrew-cask/Casks/b/box-drive.rb
T
2024-01-18 18:33:40 -05:00

41 lines
1.1 KiB
Ruby

cask "box-drive" do
version "2.37.142"
sha256 :no_check
url "https://e3.boxcdn.net/desktop/releases/mac/BoxDrive.pkg",
verified: "e3.boxcdn.net/desktop/releases/mac/"
name "Box Drive"
desc "Client for the Box cloud storage service"
homepage "https://www.box.com/drive"
livecheck do
url :url
strategy :extract_plist do |item|
item["com.box.desktop"].version
end
end
auto_updates true
conflicts_with cask: "box-sync"
depends_on macos: ">= :el_capitan"
pkg "BoxDrive.pkg"
uninstall launchctl: "com.box.desktop.helper",
quit: [
"com.box.Box-Local-Com-Server",
"com.box.desktop",
"com.box.desktop.findersyncext",
"com.box.desktop.helper",
"com.box.desktop.ui",
],
script: "/Library/Application Support/Box/uninstall_box_drive",
pkgutil: "com.box.desktop.installer.*"
zap trash: [
"~/Library/Application Support/Box/Box",
"~/Library/Containers/com.box.desktop.findersyncext",
"~/Library/Logs/Box/Box",
]
end