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

68 lines
1.9 KiB
Ruby

cask "mactex-no-gui" do
version "2022.0321"
sha256 "dc1983c82de2c68f1c434f734d94343959d1338adb6f55132ccce11c787badc1"
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.ghostscript9.55",
"choiceAttribute" => "selected",
"attributeSetting" => 0,
},
{
# Ghostscript Dynamic Library
"choiceIdentifier" => "org.tug.mactex.ghostscript9.55-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: [
"/usr/local/texlive/#{version.major}",
"/Library/TeX",
"/etc/paths.d/TeX",
"/etc/manpaths.d/TeX",
]
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