to allow programming of Asterisk from python. The library currently supports AGI, AMI, and the parsing of Asterisk configuration files. The library also includes debugging facilities for AGI. WWW: http://pyst.sourceforge.net/ PR: ports/160495 Submitted by: Mikhail T. <m.tsatsenko@gmail.com>
29 lines
600 B
Makefile
29 lines
600 B
Makefile
# New ports collection makefile for: pyst
|
|
# Date created: 06 Sep 2011
|
|
# Whom: Mikhail T. <m.tsatsenko@gmail.com>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pyst
|
|
PORTVERSION= 0.3.22
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= SF/${PORTNAME}/pyst/${PORTVERSION}
|
|
|
|
MAINTAINER= m.tsatsenko@gmail.com
|
|
COMMENT= Python interface to allow Asterisk programming
|
|
|
|
USE_PYTHON= yes
|
|
USE_PYDISTUTILS= yes
|
|
|
|
DOCS= README README.html ChangeLog
|
|
|
|
.if !defined(NOPORTDOCS)
|
|
post-install:
|
|
@${MKDIR} ${DOCSDIR}
|
|
.for file in ${DOCS}
|
|
@${INSTALL_DATA} ${WRKSRC}/${file} ${DOCSDIR}
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|