f6dd20f18f
Changelog: * Drop support for unidecode Approved by: mentors (implicit)
29 lines
761 B
Makefile
29 lines
761 B
Makefile
# $FreeBSD$
|
|
|
|
PORTNAME= normality
|
|
DISTVERSION= 1.0.0
|
|
CATEGORIES= textproc python
|
|
MASTER_SITES= CHEESESHOP
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
|
|
MAINTAINER= kai@FreeBSD.org
|
|
COMMENT= Micro-library to normalize text strings
|
|
|
|
LICENSE= MIT
|
|
LICENSE_FILE= ${WRKSRC}/LICENSE
|
|
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.11.0:devel/py-six@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}banal>=0.4.1:devel/py-banal@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}chardet>=0:textproc/py-chardet@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}pyicu>=1.9.3:devel/py-pyicu@${PY_FLAVOR}
|
|
|
|
USES= python
|
|
USE_PYTHON= distutils autoplist
|
|
|
|
NO_ARCH= yes
|
|
|
|
post-extract:
|
|
# Prevents that the tests directory will be installed into site-packages
|
|
@(cd ${WRKSRC} && ${MV} tests test)
|
|
|
|
.include <bsd.port.mk>
|