c8b57a6c42
Epydoc is a tool for generating API documentation for Python modules, based on their docstrings. A lightweight markup language called epytext can be used to format docstrings, and to add information about specific fields, such as parameters and instance variables.
21 lines
570 B
Makefile
21 lines
570 B
Makefile
# $NetBSD: Makefile,v 1.1 2004/03/28 21:27:58 darcy Exp $
|
|
# FreeBSD Id: ports/devel/epydoc/Makefile,v 1.1 2003/12/29 07:07:37 ijliao Exp
|
|
|
|
DISTNAME= epydoc-2.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=epydoc/}
|
|
|
|
MAINTAINER= darcy@NetBSD.org
|
|
HOMEPAGE= http://epydoc.sourceforge.net/
|
|
COMMENT= Python documentation framework
|
|
|
|
USE_BUILDLINK3= yes
|
|
PYDISTUTILSPKG= yes
|
|
|
|
EPYDOCDIR= ${PREFIX}/share/doc/epydoc
|
|
|
|
post-install:
|
|
cd ${WRKSRC}/doc && ${PAX} -rw -pp -pm . ${EPYDOCDIR}
|
|
|
|
.include "../../lang/python/extension.mk"
|
|
.include "../../mk/bsd.pkg.mk"
|