homebrew-cask/Casks/m/mactex-no-gui.rb

70 lines
1.9 KiB
Ruby

cask "mactex-no-gui" 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 without GUI applications"
homepage "https://www.tug.org/mactex/"
livecheck do
cask "mactex"
end
conflicts_with cask: [
"basictex",
"mactex",
]
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" => 0,
},
{
# TeXLive
"choiceIdentifier" => "org.tug.mactex.texlive#{version.major}",
"choiceAttribute" => "selected",
"attributeSetting" => 1,
},
]
uninstall pkgutil: "org.tug.mactex.texlive#{version.major}",
delete: [
"/etc/manpaths.d/TeX",
"/etc/paths.d/TeX",
"/Library/TeX",
"/usr/local/texlive/#{version.major}",
]
zap trash: "/usr/local/texlive/texmf-local",
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