mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
814 B
Ruby
29 lines
814 B
Ruby
cask "tableau-public" do
|
|
version "2023.3.0"
|
|
sha256 "6d7fd9138e13c3abfc7b3290df2a2b2ceb481f8e719cb251c159accb4540a27b"
|
|
|
|
url "https://downloads.tableau.com/public/TableauPublic-#{version.dots_to_hyphens}.dmg"
|
|
name "Tableau Public"
|
|
desc "Explore, create and publicly share data visualizations online"
|
|
homepage "https://public.tableau.com/s/"
|
|
|
|
livecheck do
|
|
url "https://www.tableau.com/downloads/public/mac"
|
|
strategy :header_match do |headers|
|
|
headers["location"][/TableauPublic[._-]v?(\d+(?:-\d+)+)\.dmg/i, 1].tr("-", ".")
|
|
end
|
|
end
|
|
|
|
pkg "Tableau Public.pkg"
|
|
|
|
uninstall pkgutil: [
|
|
"com.tableausoftware.FLEXNet.*",
|
|
"com.tableausoftware.Public.app",
|
|
]
|
|
|
|
zap trash: [
|
|
"~/Library/Caches/com.tableau.caching",
|
|
"~/Library/Caches/com.tableausoftware.MapTiles",
|
|
]
|
|
end
|