29 lines
924 B
Ruby
29 lines
924 B
Ruby
cask "tg-pro" do
|
|
version "2.92"
|
|
sha256 "fa3fddc5324ec5e25f2f86a3aac2c0c11efbe5aa3705dfc6c26895fa74ebea6d"
|
|
|
|
url "https://www.tunabellysoftware.com/resources/TG%20Pro%20#{version}.dmg"
|
|
name "TG Pro"
|
|
desc "Temperature monitoring, fan control and diagnostics"
|
|
homepage "https://www.tunabellysoftware.com/tgpro/"
|
|
|
|
livecheck do
|
|
url "https://www.tunabellysoftware.com/resources/sparkle/tgpro.xml"
|
|
strategy :sparkle, &:short_version
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "TG Pro.app"
|
|
|
|
zap trash: [
|
|
"/Library/LaunchDaemons/com.tunabellysoftware.TGFanHelper.plist",
|
|
"/Library/PrivilegedHelperTools/com.tunabellysoftware.TGFanHelper",
|
|
"~/Library/Application Support/TG Pro",
|
|
"~/Library/Caches/com.tunabellysoftware.tgpro",
|
|
"~/Library/Cookies/com.tunabellysoftware.tgpro.binarycookies",
|
|
"~/Library/Preferences/com.tunabellysoftware.tgpro.plist",
|
|
]
|
|
end
|