blob: c055521f98105a09c7751720aee89e8026c01f2e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
PORTNAME= recordclass
PORTVERSION= 0.22
PORTREVISION= 1
CATEGORIES= devel python
MASTER_SITES= PYPI
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= thierry@FreeBSD.org
COMMENT= Mutable variants of tuple and collections.namedtuple
WWW= https://github.com/intellimath/recordclass
LICENSE= MIT
USES= python
USE_PYTHON= distutils
.if ! defined(WITH_DEBUG)
LDFLAGS+= -s
.endif
do-test: install
(cd ${WRKSRC} && ${PYTHON_CMD} ./test_all.py)
.include <bsd.port.mk>
|