milis/talimatname/genel/t/tesseract/talimat

29 lines
908 B
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Tanım: OCR programı
# URL: https://github.com/tesseract-ocr/tesseract
# Paketçi: Cihan_Alkan
# Gerekler: libpng libtiff libjpeg-turbo zlib giflib leptonica icu cairo pango
# Grup: medya
isim=tesseract
surum=3.05.01
devir=1
kaynak=(https://github.com/tesseract-ocr/tesseract/archive/$surum.tar.gz::${isim}-${surum}.tar.gz
https://github.com/tesseract-ocr/tessdata/raw/master/osd.traineddata
https://github.com/tesseract-ocr/tessdata/raw/master/tur.traineddata)
derle() {
cd "$SRC"/$isim-${surum}
[ -x configure ] || ./autogen.sh
[ -f Makefile ] || ./configure --prefix=/usr
make
make training
make DESTDIR="$PKG" install
make DESTDIR="$PKG" training-install
mkdir -p "$PKG"/usr/share/tessdata
install -Dm0644 "$SRC"/osd.traineddata "$PKG"/usr/share/tessdata/osd.traineddata
cp $SRC/tur.traineddata $PKG/usr/share/tessdata/
find $PKG/usr/share/tessdata -type f -exec chmod 0644 {} \;
}