26 lines
548 B
Makefile
26 lines
548 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= dynrules
|
|
PORTVERSION= 0.1.0
|
|
PORTREVISION= 1
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= http://bitbucket.org/marcusva/py-dynrules/downloads/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= mva@FreeBSD.org
|
|
COMMENT= Dynamic Scripting for adaptive AI systems
|
|
|
|
LICENSE= ZLIB
|
|
|
|
USES= python
|
|
USE_PYTHON= autoplist distutils
|
|
NO_ARCH= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
post-install-DOCS-on:
|
|
@${MKDIR} ${STAGEDIR}${DOCSDIR}/html
|
|
@${TAR} -C ${WRKSRC}/doc/html -cf - . | \
|
|
${TAR} -C ${STAGEDIR}${DOCSDIR}/html -xf -
|
|
|
|
.include <bsd.port.mk>
|