mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
29 lines
891 B
Ruby
29 lines
891 B
Ruby
cask "texshop" do
|
|
version "5.22"
|
|
sha256 "769a8ce40d5d49631150edab9f9cc45b5225dbe907b99fb6cfb57b535ba20bd5"
|
|
|
|
url "https://pages.uoregon.edu/koch/texshop/texshop-64/texshop#{version.no_dots}.zip"
|
|
name "TeXShop"
|
|
desc "TeX previewer"
|
|
homepage "https://pages.uoregon.edu/koch/texshop/"
|
|
|
|
livecheck do
|
|
url "https://pages.uoregon.edu/koch/texshop/texshop-64/texshopappcast.xml"
|
|
strategy :sparkle
|
|
end
|
|
|
|
auto_updates true
|
|
depends_on macos: ">= :high_sierra"
|
|
|
|
app "TeXShop.app"
|
|
|
|
zap trash: [
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/texshop.sfl*",
|
|
"~/Library/Application Support/TeXShop",
|
|
"~/Library/Caches/com.apple.helpd/SDMHelpData/Other/English/HelpSDMIndexFile/TeXShop Help*",
|
|
"~/Library/Caches/TeXShop",
|
|
"~/Library/Preferences/TeXShop.plist",
|
|
"~/Library/TeXShop",
|
|
]
|
|
end
|