You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
roundcubemail/bin/makedoc.sh

30 lines
567 B
Bash

#!/bin/bash
TITLE="RoundCube Classes"
PACKAGES="Core"
INSTALL_PATH="`dirname $0`/.."
PATH_PROJECT=$INSTALL_PATH/program/include
PATH_DOCS=$INSTALL_PATH/doc/phpdoc
if [ -x /usr/local/php5/bin/phpdoc ]
then
PATH_PHPDOC=/usr/local/php5/bin/phpdoc
elif [ -x /usr/bin/phpdoc ]
then
PATH_PHPDOC=/usr/bin/phpdoc
else
echo "phpdoc not found"
exit 1
fi
OUTPUTFORMAT=HTML
CONVERTER=frames
TEMPLATE=earthli
PRIVATE=off
# make documentation
$PATH_PHPDOC -d $PATH_PROJECT -t $PATH_DOCS -ti "$TITLE" -dn $PACKAGES \
-o $OUTPUTFORMAT:$CONVERTER:$TEMPLATE -pp $PRIVATE