mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
4aee46138c
links to the snapshot archives and chm file. --HG-- extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%402654
62 lines
1.6 KiB
Bash
Executable File
62 lines
1.6 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
report_failure ()
|
|
{
|
|
echo " **** failed to complete **** "
|
|
exit 1
|
|
}
|
|
|
|
|
|
./testenv || report_failure
|
|
|
|
./makedocs snapshot || exit 1
|
|
|
|
|
|
|
|
REVISION=`svn info | grep Revision | awk '{ print $2 }'`
|
|
|
|
|
|
DLIB_REPOS=`svn info | grep URL | awk '{print $2}' | sed -e 's/\/docs$//' `
|
|
|
|
|
|
|
|
cd release || report_failure
|
|
rm -rf *
|
|
RELDIR=`echo dlib_snapshot-rev$REVISION`
|
|
mkdir $RELDIR
|
|
cd $RELDIR || report_failure
|
|
cp -r ../../docs/cache/dlib . || report_failure
|
|
cp -r ../../docs/cache/examples . || report_failure
|
|
|
|
echo This copy of dlib C++ library is a developmental snapshot. >> dlib/README.txt
|
|
echo Subversion Revision Number: $REVISION >> dlib/README.txt
|
|
|
|
|
|
SOURCE_ZIP=`echo $RELDIR.zip`
|
|
SOURCE_TAR=`echo $RELDIR.tar`
|
|
tar -C ../../docs/chm -cf - docs/ documentation.html --exclude=".svn" | tar -xf -
|
|
cd .. || report_failure
|
|
|
|
tar -cf $SOURCE_TAR $RELDIR
|
|
# flip everything to MS-DOS line endings
|
|
find $RELDIR -name "*.cpp" -or -name "*.h" -or -name "*.txt" -or -name "*.html" | xargs flip -m
|
|
zip -r9 $SOURCE_ZIP $RELDIR > /dev/null
|
|
bzip2 $SOURCE_TAR
|
|
|
|
rm -rf $RELDIR
|
|
|
|
|
|
# make an index.html with links to the snapshot archives and chm file
|
|
echo "<html><body>" > index.html
|
|
echo "<a href='$SOURCE_ZIP'>$SOURCE_ZIP</a><br/>" >> index.html
|
|
echo "<a href='$SOURCE_TAR.bz2'>$SOURCE_TAR.bz2</a><br/>" >> index.html
|
|
echo "<a href='dlib_documentation_snapshot-rev$REVISION.chm'>dlib_documentation_snapshot-rev$REVISION.chm</a><br/>" >> index.html
|
|
echo "</body></html>" >> index.html
|
|
|
|
|
|
# finally, generate the chm help file
|
|
wine ../docs/chm/htmlhelp/hhc.exe ../docs/chm/lib.hhp
|
|
mv ../docs/chm/help.chm dlib_documentation_snapshot-rev$REVISION.chm
|
|
|
|
|