mirror of
https://github.com/tesseract-ocr/tesseract.git
synced 2025-01-19 06:53:36 +08:00
db24b1ab53
git-svn-id: https://tesseract-ocr.googlecode.com/svn/trunk@766 d0cd1f9f-072b-0410-8dd7-cf729c803f20
48 lines
1.3 KiB
Bash
Executable File
48 lines
1.3 KiB
Bash
Executable File
#!/bin/bash
|
|
# Requirement: tesseract directory name should be "tesseract-3.02"
|
|
|
|
source_dir=${PWD##*/}
|
|
ver=$source_dir
|
|
excld="exclude.txt"
|
|
|
|
cd ..
|
|
echo Output for $source_dir is in `pwd` ...
|
|
|
|
# create language files packages
|
|
if [ -f $excld ]
|
|
then
|
|
echo Removing $excld...
|
|
rm -f $excld
|
|
fi
|
|
|
|
for l in $source_dir/tessdata/*.traineddata
|
|
do
|
|
filename=`basename "$l"`
|
|
lang=${filename%.*}
|
|
echo Creating language package for `basename "$l"`...
|
|
chmod 644 $source_dir/tessdata/*$lang*
|
|
tar --group root --owner root -chozf $ver.`basename "$l" .traineddata`.tar.gz $source_dir/tessdata/*$lang*
|
|
echo $source_dir/tessdata/*$lang* | tr " " "\n" >>$excld
|
|
done
|
|
|
|
# Windows build relevant files
|
|
name=$ver-win_vs2008
|
|
# Let's be nice and use common windows packager ;-)
|
|
zip -9 -r --exclude=*.svn* --exclude=*strtok_r* $name.zip $source_dir/vs2008/
|
|
|
|
# create linux source package
|
|
echo Creating linux source package $ver.tar.gz ...
|
|
tar -chf $ver.tar --exclude=.svn --exclude=debian --exclude=autom4te.cache --exclude=doc/html --exclude=po/ --exclude=makemoredists --exclude=vs2008 -X $excld $source_dir/*
|
|
#workaround to include strtok_r from vs2008 for mingw
|
|
tar -rf $ver.tar $source_dir/vs2008/port/strtok_r.*
|
|
gzip $ver.tar
|
|
|
|
# create doc and package doc
|
|
cd $source_dir
|
|
# doxygen doc/Doxyfile
|
|
cd ..
|
|
tar -chzf $ver-doc-html.tar.gz $source_dir/doc/html/*
|
|
|
|
rm -f $excld
|
|
cd $source_dir
|