ports/devel/py-wcwidth/Makefile
Steven Kreuzer 2b9c04c282 This API is mainly for Terminal Emulator implementors -- any python program
that attempts to determine the printable width of a string on a Terminal.

It is certainly possible to use your Operating System's wcwidth() and
wcswidth() calls if it is POSIX-conforming, but this would not be possible on
non-POSIX platforms, such as Windows, or for alternative Python
implementations, such as jython.

WWW: https://github.com/jquast/wcwidth
2014-09-30 16:02:18 +00:00

18 lines
367 B
Makefile

# Created by: Steven Kreuzer <skreuzer@FreeBSD.org>
# $FreeBSD$
PORTNAME= wcwidth
PORTVERSION= 0.1.1
CATEGORIES= devel python
MASTER_SITES= CHEESESHOP
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
MAINTAINER= skreuzer@FreeBSD.org
COMMENT= Determine the printable width of the terminal
LICENSE= MIT
USES= python:2
USE_PYTHON= distutils autoplist
.include <bsd.port.mk>