From: Gerald (Jerry) Carter Date: Tue, 27 May 2008 17:00:00 +0000 (-0500) Subject: Add simple script to build docs X-Git-Tag: samba-4.0.0alpha6~801^2~1255^2~16 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=9acd33131cd1c8a79474c96a55f13266b6325ad5;p=thirdparty%2Fsamba.git Add simple script to build docs (This used to be commit 0865f4615d3ee91673dd6d02c6537765f34b3129) --- diff --git a/release-scripts/build-docs b/release-scripts/build-docs new file mode 100755 index 00000000000..529a1c07f18 --- /dev/null +++ b/release-scripts/build-docs @@ -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 \ No newline at end of file