Sophie

Sophie

distrib > Fedora > 16 > i386 > by-pkgid > cf220088776326780c01bc2a062eccf4 > files > 110

mapnik-devel-0.7.1-10.fc16.i686.rpm

#!/bin/sh

API_DOCS_DIR="../api_docs/python"

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 $?