tesseract: Fix build after tessdata repo updates

This commit is contained in:
Fredrik Fornwall 2017-01-07 00:59:09 -05:00
parent 2b0e9dc9e2
commit bb290b16af
1 changed files with 4 additions and 1 deletions

View File

@ -20,6 +20,9 @@ termux_step_post_make_install() {
rm -f eng.*
for f in cube.{bigrams,fold,lm,nn,params,size,word-freq} tesseract_cube.nn traineddata; do
f=eng.$f
termux_download https://raw.githubusercontent.com/tesseract-ocr/tessdata/master/$f $f
# From the tessdata README: "These language data files only work with
# Tesseract 4. They are based on the sources in tesseract-ocr/langdata on GitHub.
# Get language data files for Tesseract 3.04 or 3.05 from the 3.04 tree."
termux_download https://raw.githubusercontent.com/tesseract-ocr/tessdata/3.04.00/$f $f
done
}