forked from Lainports/freebsd-ports
rply is a pure python parser generator, that also works with RPython. It is a more-or-less direct port of David Beazley's awesome PLY, with a new public API, and RPython support. WWW: https://pypi.python.org/pypi/rply/ PR: 216783 Submitted by: dave@dal.ca
22 lines
477 B
Makefile
22 lines
477 B
Makefile
# Created by: David Kalliecharan <dave@dal.ca>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= rply
|
|
PORTVERSION= 0.7.4
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= dave@dal.ca
|
|
COMMENT= Pure python parser generator, that also works with RPython
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}appdirs>0:devel/py-appdirs
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
NO_ARCH= yes
|
|
|
|
.include <bsd.port.mk>
|