forked from project-valhalla/main
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtesseract_unix
More file actions
executable file
·66 lines (57 loc) · 1.52 KB
/
tesseract_unix
File metadata and controls
executable file
·66 lines (57 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
#!/bin/sh
# TESS_DATA should refer to the directory in which Tesseract data files are placed.
#TESS_DATA=~/tesseract
#TESS_DATA=/usr/local/tesseract
TESS_DATA=.
# TESS_BIN should refer to the directory in which Tesseract executable files are placed.
TESS_BIN=${TESS_DATA}/bin_unix
# TESS_OPTIONS contains any command line options you would like to start Tesseract with.
#TESS_OPTIONS=""
TESS_OPTIONS="-u${HOME}/.valhallaproject"
# SYSTEM_NAME should be set to the name of your operating system.
#SYSTEM_NAME=Linux
SYSTEM_NAME=`uname -s`
# MACHINE_NAME should be set to the name of your processor.
#MACHINE_NAME=i686
MACHINE_NAME=`uname -m`
case ${SYSTEM_NAME} in
Linux)
SYSTEM_NAME=linux_
;;
*)
SYSTEM_NAME=unknown_
;;
esac
case ${MACHINE_NAME} in
i486|i586|i686)
MACHINE_NAME=
;;
x86_64|amd64)
MACHINE_NAME=64_
;;
*)
if [ ${SYSTEM_NAME} != native_ ]
then
SYSTEM_NAME=native_
fi
MACHINE_NAME=
;;
esac
if [ -x ${TESS_BIN}/native_client ]
then
SYSTEM_NAME=native_
MACHINE_NAME=
fi
if [ -x ./bin_unix/${SYSTEM_NAME}client ]
then
cd ${TESS_DATA}
exec ./src/tess_client
else
echo "Your platform does not have a pre-compiled Tesseract client."
echo "Please follow the following steps to build a native client:"
echo "1) Ensure you have the SDL2, SDL2-image, SDL2-mixer, and OpenGL libraries installed."
echo "2) Type \"make -C src install\"."
echo "3) If the build succeeds, run this script again."
echo "4) In case binaries won't run, make sure they have the permission \"is executable\". "
exit 1
fi