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.
25 lines
535 B
Bash
25 lines
535 B
Bash
#!/bin/sh
|
|
|
|
TITLE="Roundcube Webmail"
|
|
PACKAGES="Webmail"
|
|
|
|
INSTALL_PATH="`dirname $0`/.."
|
|
PATH_PROJECT=$INSTALL_PATH/program/include
|
|
PATH_FRAMEWORK=$INSTALL_PATH/program/lib/Roundcube
|
|
PATH_DOCS=$INSTALL_PATH/doc/phpdoc
|
|
BIN_PHPDOC="`/usr/bin/which phpdoc`"
|
|
|
|
if [ ! -x "$BIN_PHPDOC" ]
|
|
then
|
|
echo "phpdoc not found: $BIN_PHPDOC"
|
|
exit 1
|
|
fi
|
|
|
|
OUTPUTFORMAT=HTML
|
|
TEMPLATE=responsive-twig
|
|
|
|
# make documentation
|
|
$BIN_PHPDOC -d $PATH_PROJECT,$PATH_FRAMEWORK -t $PATH_DOCS --title "$TITLE" --defaultpackagename $PACKAGES \
|
|
--template=$TEMPLATE
|
|
|