mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
30 lines
1015 B
Ruby
30 lines
1015 B
Ruby
cask "serial" do
|
|
version "2.0.17"
|
|
sha256 "9dcd6e055cb40b97773a8adf592b37070e7265190ac625e62cc73cc86c86b3f5"
|
|
|
|
url "https://download.decisivetactics.com/downloads/serial/Serial_#{version}.zip"
|
|
name "Serial"
|
|
desc "Connect to almost anything with a serial port"
|
|
homepage "https://www.decisivetactics.com/products/serial/"
|
|
|
|
livecheck do
|
|
url "https://api.decisivetactics.com/api/v1/public/appcast?app=serial"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :el_capitan"
|
|
|
|
app "Serial.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Scripts/com.decisivetactics.serial*",
|
|
"~/Library/Caches/com.apple.helpd/Generated/com.decisivetactics.serial*",
|
|
"~/Library/Caches/com.decisivetactics.serial*",
|
|
"~/Library/Containers/com.decisivetactics.serial*",
|
|
"~/Library/HTTPStorages/com.decisivetactics.serial*",
|
|
"~/Library/Preferences/com.decisivetactics.serial.direct.plist",
|
|
"~/Library/Saved Application State/com.decisivetactics.serial*",
|
|
]
|
|
end
|