Update missing_formula.rb

This commit is contained in:
Waldir Pimenta 2019-02-05 14:05:57 +00:00 committed by GitHub
parent 3dc0df5a77
commit 2dccfe1d02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,7 +15,7 @@ module Homebrew
EOS EOS
when "tex", "tex-live", "texlive", "latex" then <<~EOS when "tex", "tex-live", "texlive", "latex" then <<~EOS
Installing TeX from source is weird and gross, requires a lot of patches, Installing TeX from source is weird and gross, requires a lot of patches,
and only builds 32-bit (and thus cant use Homebrew dependencies) and only builds 32-bit (and thus can't use Homebrew dependencies)
We recommend using a MacTeX distribution: https://www.tug.org/mactex/ We recommend using a MacTeX distribution: https://www.tug.org/mactex/
@ -23,9 +23,10 @@ module Homebrew
brew cask install mactex brew cask install mactex
EOS EOS
when "pip" then <<~EOS when "pip" then <<~EOS
Homebrew provides pip via: `brew install python`. However you will then pip is part of the python formula, and can be installed with:
have two Pythons installed on your Mac, so alternatively you can install brew install python
pip via the instructions at: However you will then have two Pythons installed on your Mac,
so alternatively you can install pip via the instructions at:
#{Formatter.url("https://pip.readthedocs.io/en/stable/installing/")} #{Formatter.url("https://pip.readthedocs.io/en/stable/installing/")}
EOS EOS
when "pil" then <<~EOS when "pil" then <<~EOS
@ -38,7 +39,7 @@ module Homebrew
EOS EOS
when /(lib)?lzma/ then <<~EOS when /(lib)?lzma/ then <<~EOS
lzma is now part of the xz formula, and can be installed with: lzma is now part of the xz formula, and can be installed with:
brew install xz. brew install xz
EOS EOS
when "gtest", "googletest", "google-test" then <<~EOS when "gtest", "googletest", "google-test" then <<~EOS
Installing gtest system-wide is not recommended; it should be vendored Installing gtest system-wide is not recommended; it should be vendored
@ -82,7 +83,8 @@ module Homebrew
brew cask install ngrok brew cask install ngrok
EOS EOS
when "cargo" then <<~EOS when "cargo" then <<~EOS
Homebrew provides cargo via: `brew install rust`. cargo is part of the rust formula, and can be installed with:
brew install rust
EOS EOS
end end
end end