1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-08 21:18:16 +03:00

Add simple script to build docs

This commit is contained in:
Gerald (Jerry) Carter 2008-05-27 12:00:00 -05:00
parent bf3c2773f9
commit 0865f4615d

25
release-scripts/build-docs Executable file
View File

@ -0,0 +1,25 @@
#!/bin/sh
DOCSRCDIR=`dirname $0`/../docs-xml
cd $DOCSRCDIR || exit 1
git-clean -d -x -f
autoconf && ./configure --with-papersize=letter && make release
if [ $? != 0 ]; then
echo "Docs build failed!"
exit 1
fi
mkdir ../docs
rsync -Ca --delete --exclude=.git output/ ../docs/
rsync -Ca --exclude=.svn registry ../docs/
rsync -Ca --exclude=.svn archives/ ../docs/
cd ../docs || exit 1
/bin/rm -rf test.pdf Samba4*pdf htmldocs/Samba4* htmldocs/test
mv manpages-3 manpages
mv htmldocs/manpages-3 htmldocs/manpages
exit