homebrew-cask-versions/Casks/basictex.rb
Geoffrey Oxberry c92824a5af Add PATH caveats to BasicTeX cask.
Warns user that they may need to add LaTeX-related executables to
their PATH.

Similar to #2284, related to #2277.
2014-01-04 17:13:39 -08:00

16 lines
409 B
Ruby

class Basictex < Cask
url 'http://mirror.ctan.org/systems/mac/mactex/mactex-basic.pkg'
homepage 'http://www.tug.org/mactex/morepackages.html'
version 'latest'
no_checksum
install 'mactex-basic.pkg'
uninstall :pkgutil => 'org.tug.mactex.basictex2013'
def caveats; <<-EOS.undent
You may need to add the MacTeX bin directory to your PATH.
export PATH=/usr/texbin:$PATH
EOS
end
end