Files
homebrew-cask/Casks/t/tableau.rb
2023-10-24 17:49:56 -04:00

49 lines
1.7 KiB
Ruby

cask "tableau" do
version "2023.3.0"
sha256 "980ffb76e49b275203eabb8fc114bab65238e036a576a34bd1e0670567600c7f"
url "https://downloads.tableau.com/tssoftware/TableauDesktop-#{version.dots_to_hyphens}.dmg"
name "Tableau Desktop"
desc "Data visualization software"
homepage "https://www.tableau.com/products/desktop"
livecheck do
url "https://www.tableau.com/downloads/desktop/mac"
strategy :header_match do |headers|
headers["location"][/TableauDesktop[._-]v?(\d+(?:-\d+)+)\.dmg/i, 1].tr("-", ".")
end
end
depends_on macos: ">= :mojave"
pkg "Tableau Desktop.pkg"
uninstall pkgutil: [
"com.amazon.redshiftodbc",
"com.simba.sparkodbc",
"com.simba.sqlserverodbc",
"com.tableausoftware.Desktop.app",
"com.tableausoftware.DesktopShortcut",
"com.tableausoftware.extensions",
"com.tableausoftware.FLEXNet.*",
"com.tableausoftware.mysql",
"com.tableausoftware.networkExtensions",
"com.tableausoftware.oracle",
"com.tableausoftware.postgresql",
"com.tableausoftware.telemetry",
"simba.sparkodbc",
]
zap trash: [
"/Library/Preferences/com.tableau.Tableau-#{version.major_minor}.plist",
"~/Documents/My Tableau Repository",
"~/Library/Caches/com.tableau.caching",
"~/Library/Caches/com.tableausoftware.MapTiles",
"~/Library/Preferences/com.tableau.Registration.plist",
"~/Library/Preferences/com.tableau.Tableau-#{version.major_minor}.plist",
"~/Library/Saved Application State/com.tableausoftware.tableaudesktop.savedState",
"~/Library/Tableau",
],
delete: "/Library/Preferences/com.tableau.Tableau-#{version.major_minor}.plist"
end