hunspell: Add caveats about how to obtain dictionaries

Fixes Homebrew/homebrew#21788.
Closes Homebrew/homebrew#26909.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
This commit is contained in:
Peter Eisentraut 2014-02-21 22:39:32 -05:00 committed by Adam Vandenberg
parent e884db1a42
commit 838737eec2

View file

@ -22,6 +22,15 @@ class Hunspell < Formula
ENV.deparallelize
system "make install"
end
def caveats; <<-EOS.undent
Dictionary files (*.aff and *.dic) should be placed in
~/Library/Spelling/ or /Library/Spelling/. Homebrew itself
provides no dictionaries for Hunspell, but you can download
compatible dictionaries from other sources, such as
https://wiki.openoffice.org/wiki/Dictionaries .
EOS
end
end
__END__