summaryrefslogtreecommitdiffstats
path: root/graphics/tesseract/README
diff options
context:
space:
mode:
author Pierre Cazenave2010-05-11 20:00:39 +0200
committer Robby Workman2010-05-11 20:00:39 +0200
commit14b8caa20fc116712e1e63d13b084ac26c220315 (patch)
tree7054f5be33fdb33c34d5b08095879fea83dfbdd8 /graphics/tesseract/README
parent6554387e19978d27d3c521f8e07f9a949d59d3c7 (diff)
downloadslackbuilds-14b8caa20fc116712e1e63d13b084ac26c220315.tar.gz
graphics/tesseract: Added to 12.0 repository
Diffstat (limited to 'graphics/tesseract/README')
-rw-r--r--graphics/tesseract/README20
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/tesseract/README b/graphics/tesseract/README
new file mode 100644
index 0000000000..31bfc8b694
--- /dev/null
+++ b/graphics/tesseract/README
@@ -0,0 +1,20 @@
+Tesseract is a commercial quality OCR engine originally developed at HP
+between 1985 and 1995. In 1995, this engine was among the top 3 evaluated
+by UNLV. It was open-sourced by HP and UNLV in 2005.
+
+You will need to get one of the language packs in order to do anything
+useful with tesseract, and that language pack tarball should be present
+in the same directory as the SlackBuild script when the package is created.
+See http://code.google.com/p/tesseract-ocr/downloads/list for a list of
+all available language packs. Note that you can install more than one
+(or even all) of the language packs, as they do not conflict with each
+other. The build script defaults to use English, but this is easily
+changed by passing an alternate value on the command line.
+Here is the relevant code from the build script:
+ # Language pack(s) to use
+ # We'll install English by default, but you can pass another one (or all)
+ # of them on the command line (space delimited). If you pass more than one
+ # (again, space delimited), you must enclose the string in quotes. Examples:
+ # TESSLANG=fra ./tesseract.SlackBuild
+ # TESSLANG="deu eng fra ita nld spa" ./tesseract.SlackBuild
+ TESSLANG=${TESSLANG:-eng} # Default to English