blob: c81257da13c4660630a5eb3750c0aacab2509a2f (
plain)
1 # Description: Optical character recognition (OCR) engine
2 # URL: https://github.com/tesseract-ocr/tesseract
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on: libjpeg-turbo libpng libtiff leptonica
5 # Nice to have: tessdata
6
7 name=tesseract
8 version=5.5.0
9 release=1
10 source=(https://github.com/tesseract-ocr/${name}/archive/${version}.tar.gz)
11
12 build() {
13 cd ${name}-${version}
14
15 ./autogen.sh
16
17 ./configure --prefix=/usr
18
19 make
20 make DESTDIR=${PKG} install
21 }
|