mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2024-11-28 05:19:18 +08:00
4614bc1512
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@345 d0cd1f9f-072b-0410-8dd7-cf729c803f20
13 lines
727 B
Bash
Executable File
13 lines
727 B
Bash
Executable File
#!/bin/bash
|
|
winlist="tessdll.dll tessdll.lib tesseract.exe dlltest.exe cntraining.exe mftraining.exe unicharset_extractor.exe wordlist2dawg.exe java/ScrollView.jar tessdata/configs/* tessdata/tessconfigs/*"
|
|
windeps="glut32.dll jpeg62.dll libimage.dll libpng13.dll librle3.dll libtiff3.dll zlib1.dll leptonlib.dll lib/leptonlib.lib include/*.h dlltest/* tesseract.vcproj tesseract.sln StdAfx.cpp StdAfx.h tessdll.cpp tessdll.h tessdll.vcproj"
|
|
ver=`ls -1rt *[0-9].tar.gz |tail -1`
|
|
ver=${ver%.tar.gz}
|
|
for l in eng deu fra ita spa nld por vie
|
|
do
|
|
chmod 644 tessdata/$l.*
|
|
tar --group root --owner root -chozf $ver.$l.tar.gz tessdata/$l.*
|
|
done
|
|
tar chozf $ver.exe.tar.gz $winlist
|
|
tar chozf $ver.windep.tar.gz $windeps
|