PTable is a simple Python library designed to make it quick and easy to represent tabular data in visually appealing ASCII tables, originally forked from PrettyTable. WWW: https://github.com/kxxoling/PTable
21 lines
457 B
Makefile
21 lines
457 B
Makefile
# Created by: Po-Chuan Hsieh <sunpoet@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= ptable
|
|
PORTVERSION= 0.9.2
|
|
CATEGORIES= devel python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= PTable-${PORTVERSION}
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Display tabular data in an ASCII table format
|
|
|
|
LICENSE= BSD3CLAUSE
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
NO_ARCH= yes
|
|
USE_PYTHON= autoplist concurrent distutils
|
|
USES= python
|
|
|
|
.include <bsd.port.mk>
|