-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Portfile
36 lines (28 loc) · 1.22 KB
/
Portfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4
PortSystem 1.0
PortGroup python 1.0
name py-conllu
version 4.5.3
revision 0
categories-append textproc
platforms {darwin any}
supported_archs noarch
license MIT
maintainers nomaintainer
description Convert a CoNLL-U string into a nested python dictionary.
long_description CoNLL-U Parser parses a CoNLL-U formatted string \
into a nested python dictionary. CoNLL-U is often \
the output of natural language processing tasks.
homepage https://github.com/EmilStenstrom/conllu
checksums rmd160 6c5706dc200837469564c4eebe7f5103ce178efa \
sha256 a016cf77e203b2e3ace82fcf0cba2874530d1458e874521640eba36e19546acc \
size 32768
python.versions 38 39 310 311
if {${name} ne ${subport}} {
post-destroot {
set docdir ${prefix}/share/doc/${subport}
xinstall -d ${destroot}${docdir}
xinstall -m 0644 -W ${worksrcpath} README.md LICENSE \
${destroot}${docdir}
}
}