1 | # -*- 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 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | |
---|
6 | name crfpp |
---|
7 | version 0.54 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | license LGPL BSD |
---|
12 | |
---|
13 | description Yet Another CRF toolkit |
---|
14 | long_description CRF++ is a simple, customizable, and open source implementation \ |
---|
15 | of Conditional Random Fields (CRFs) for segmenting/labeling \ |
---|
16 | sequential data. \ |
---|
17 | CRF++ is designed for generic purpose and will be applied to \ |
---|
18 | a variety of NLP tasks, such as Named Entity Recognition, \ |
---|
19 | Information Extraction and Text Chunking. |
---|
20 | |
---|
21 | homepage http://crfpp.sourceforge.net/ |
---|
22 | master_sites sourceforge:crfpp |
---|
23 | distfiles CRF++-${version}.tar.gz |
---|
24 | checksums sha1 2742a49a3ec9fa570c2f83bb8a06b859481317f0 \ |
---|
25 | rmd160 c0e127fa52eb7b6e2d0cdee85749932ed8577e93 |
---|
26 | |
---|
27 | worksrcdir CRF++-${version} |
---|
28 | |
---|
29 | variant universal {} |
---|
30 | if {[variant_isset universal]} { |
---|
31 | set archflags ${configure.universal_cxxflags} |
---|
32 | } else { |
---|
33 | set archflags ${configure.cxx_archflags} |
---|
34 | } |
---|
35 | |
---|
36 | build.args CXX="${configure.cxx} ${archflags}" |
---|
37 | |
---|
38 | livecheck.type regex |
---|
39 | livecheck.url http://sourceforge.net/projects/crfpp/files/ |
---|
40 | livecheck.regex CRF\\+\\+-(\[0-9.\]+)\\. |
---|