mirror of
https://github.com/wavetermdev/homebrew-cask.git
synced 2026-08-05 13:43:24 -07:00
113 lines
4.0 KiB
Ruby
113 lines
4.0 KiB
Ruby
cask "mactex" do
|
|
version "2023.0314"
|
|
sha256 "57304ece58618f0dfc6a41be39d1d6e8f688d81247c84a89eb1cc788b280050b"
|
|
|
|
url "https://mirror.ctan.org/systems/mac/mactex/mactex-#{version.no_dots}.pkg",
|
|
verified: "mirror.ctan.org/systems/mac/mactex/"
|
|
name "MacTeX"
|
|
desc "Full TeX Live distribution with GUI applications"
|
|
homepage "https://www.tug.org/mactex/"
|
|
|
|
livecheck do
|
|
url "https://ctan.org/texarchive/systems/mac/mactex/"
|
|
strategy :page_match do |page|
|
|
match = page.match(/href=.*?mactex-(\d{4})(\d{2})(\d{2})\.pkg/)
|
|
next if match.blank?
|
|
|
|
"#{match[1]}.#{match[2]}#{match[3]}"
|
|
end
|
|
end
|
|
|
|
conflicts_with cask: [
|
|
"basictex",
|
|
"mactex-no-gui",
|
|
]
|
|
depends_on formula: "ghostscript"
|
|
depends_on macos: ">= :mojave"
|
|
|
|
pkg "mactex-#{version.no_dots}.pkg",
|
|
choices: [
|
|
{
|
|
# Ghostscript
|
|
"choiceIdentifier" => "org.tug.mactex.ghostscript10.00",
|
|
"choiceAttribute" => "selected",
|
|
"attributeSetting" => 0,
|
|
},
|
|
{
|
|
# Ghostscript Dynamic Library
|
|
"choiceIdentifier" => "org.tug.mactex.ghostscript10.00-libgs",
|
|
"choiceAttribute" => "selected",
|
|
"attributeSetting" => 0,
|
|
},
|
|
{
|
|
# GUI Applications
|
|
"choiceIdentifier" => "org.tug.mactex.gui#{version.major}",
|
|
"choiceAttribute" => "selected",
|
|
"attributeSetting" => 1,
|
|
},
|
|
{
|
|
# TeXLive
|
|
"choiceIdentifier" => "org.tug.mactex.texlive#{version.major}",
|
|
"choiceAttribute" => "selected",
|
|
"attributeSetting" => 1,
|
|
},
|
|
]
|
|
|
|
uninstall pkgutil: [
|
|
"org.tug.mactex.gui#{version.major}",
|
|
"org.tug.mactex.texlive#{version.major}",
|
|
],
|
|
delete: [
|
|
"/Applications/TeX",
|
|
"/etc/manpaths.d/TeX",
|
|
"/etc/paths.d/TeX",
|
|
"/Library/TeX",
|
|
"/usr/local/texlive/#{version.major}",
|
|
]
|
|
|
|
zap trash: [
|
|
"/usr/local/texlive/texmf-local",
|
|
"~/Library/texlive",
|
|
# TexShop:
|
|
"~/Library/Application Support/com.apple.sharedfilelist/com.apple.LSSharedFileList.ApplicationRecentDocuments/texshop.sfl*",
|
|
"~/Library/Application Support/TeXShop",
|
|
"~/Library/Caches/com.apple.helpd/Generated/TeXShop Help*",
|
|
"~/Library/Caches/TeXShop",
|
|
"~/Library/HTTPStorages/TeXShop",
|
|
"~/Library/Preferences/TeXShop.plist",
|
|
"~/Library/TeXShop",
|
|
"~/Library/WebKit/TeXShop",
|
|
# BibDesk:
|
|
"~/Library/Application Support/BibDesk",
|
|
"~/Library/Caches/com.apple.helpd/Generated/edu.ucsd.cs.mmccrack.bibdesk.help*",
|
|
"~/Library/Caches/edu.ucsd.cs.mmccrack.bibdesk",
|
|
"~/Library/Cookies/edu.ucsd.cs.mmccrack.bibdesk.binarycookies",
|
|
"~/Library/Preferences/edu.ucsd.cs.mmccrack.bibdesk.plist",
|
|
# LaTeXiT:
|
|
"~/Library/Application Scripts/*.fr.chachatelier.pierre.LaTeXiT",
|
|
"~/Library/Application Scripts/fr.chachatelier.pierre.LaTeXiT.appex",
|
|
"~/Library/Application Support/com.apple.sharedfilelist/*/fr.chachatelier.pierre.latexit.sfl2",
|
|
"~/Library/Application Support/LaTeXiT",
|
|
"~/Library/Caches/fr.chachatelier.pierre.LaTeXiT",
|
|
"~/Library/Containers/fr.chachatelier.pierre.LaTeXiT.appex",
|
|
"~/Library/Cookies/fr.chachatelier.pierre.LaTeXiT.binarycookies",
|
|
"~/Library/Group Containers/*.fr.chachatelier.pierre.LaTeXiT",
|
|
"~/Library/HTTPStorages/fr.chachatelier.pierre.LaTeXiT",
|
|
"~/Library/Preferences/fr.chachatelier.pierre.LaTeXiT.plist",
|
|
"~/Library/WebKit/fr.chachatelier.pierre.LaTeXiT",
|
|
# TeX Live Utility:
|
|
"~/Library/Application Support/TeX Live Utility",
|
|
"~/Library/Caches/com.apple.helpd/Generated/TeX Live Utility Help*",
|
|
],
|
|
rmdir: "/usr/local/texlive"
|
|
|
|
caveats <<~EOS
|
|
You must restart your terminal window for the installation of MacTeX CLI
|
|
tools to take effect.
|
|
|
|
Alternatively, Bash and Zsh users can run the command:
|
|
|
|
eval "$(/usr/libexec/path_helper)"
|
|
EOS
|
|
end
|