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.
mapnik/utils/epydoc_config/build_epydoc.sh

20 lines
351 B
Bash

#!/bin/sh
API_DOCS_DIR="mapnik-python-`mapnik-config --version`"
if [ ! -d $API_DOCS_DIR ]
then
echo "creating $API_DOCS_DIR"
mkdir -p $API_DOCS_DIR
fi
epydoc --no-private \
--no-frames \
--no-sourcecode \
--name mapnik \
--url http://mapnik.org \
--css mapnik_epydoc.css mapnik \
-o $API_DOCS_DIR
exit $?