diff options
author | Michael Gmelin <grembo@FreeBSD.org> | 2019-03-23 23:23:03 +0000 |
---|---|---|
committer | Michael Gmelin <grembo@FreeBSD.org> | 2019-03-23 23:23:03 +0000 |
commit | 3eff9d67a4b320cdb16746fce3cfcf8128a65bf8 (patch) | |
tree | e0fb9d5d1a3ee64254157bf230fae444f6337c3f /textproc/py-langdetect/Makefile | |
parent | Several improvements (diff) |
Add langdetect, a port of Google's language-detection library to Python
PR: 236685
Notes
Notes:
svn path=/head/; revision=496695
Diffstat (limited to 'textproc/py-langdetect/Makefile')
-rw-r--r-- | textproc/py-langdetect/Makefile | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/textproc/py-langdetect/Makefile b/textproc/py-langdetect/Makefile new file mode 100644 index 000000000000..52ec380a5bae --- /dev/null +++ b/textproc/py-langdetect/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +PORTNAME= langdetect +PORTVERSION= 1.0.7 +CATEGORIES= textproc python +MASTER_SITES= CHEESESHOP +PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} + +MAINTAINER= grembo@FreeBSD.org +COMMENT= Language detection library ported from Google\'s language-detection + +LICENSE= APACHE20 +LICENSE_FILE= ${WRKSRC}/LICENSE + +RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}six>=1.10:devel/py-six@${PY_FLAVOR} + +USES= python zip +USE_PYTHON= autoplist distutils + +NO_ARCH= yes + +.include <bsd.port.mk> |