mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
24 lines
642 B
Ruby
24 lines
642 B
Ruby
cask "usb-overdrive" do
|
|
version "5.2"
|
|
sha256 "eb59d9262db3c5d6dd2eaf93d1201622ed4f07ba4ba6bbdb8d8ce147b15e668b"
|
|
|
|
url "https://www.usboverdrive.com/download/USB-Overdrive-#{version.no_dots}.dmg"
|
|
name "USB Overdrive"
|
|
desc "USB and Bluetooth device driver"
|
|
homepage "https://www.usboverdrive.com/"
|
|
|
|
livecheck do
|
|
url "https://www.usboverdrive.com/index.php/download/"
|
|
regex(/>USB\s+Overdrive\s+v?(\d+(?:\.\d+)+)/i)
|
|
end
|
|
|
|
depends_on macos: ">= :big_sur"
|
|
|
|
app "USB Overdrive.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Preferences/com.usboverdrive.app.plist",
|
|
"~/Library/Preferences/com.usboverdrive.settings.plist",
|
|
]
|
|
end
|