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 bact |
---|
7 | version 0.13 |
---|
8 | categories science |
---|
9 | platforms darwin |
---|
10 | maintainers nomaintainer |
---|
11 | license GPL |
---|
12 | |
---|
13 | description a Boosting Algorithm for Classification of Trees |
---|
14 | long_description BACT is a machine learning tool for labeled orderd trees. \ |
---|
15 | The important characteristic is that the input example x \ |
---|
16 | is represented not in a numerical feature vector (bag-of-words) \ |
---|
17 | but in a labeled ordered tree. |
---|
18 | |
---|
19 | homepage http://chasen.org/~taku/software/bact/ |
---|
20 | master_sites ${homepage} |
---|
21 | checksums sha1 cdc8815e9258868699d98449598058011e993218 \ |
---|
22 | rmd160 b78eae7179833accd683dccab6a148058b5f47ab |
---|
23 | |
---|
24 | use_configure no |
---|
25 | |
---|
26 | destroot { |
---|
27 | xinstall -m 755 -W ${worksrcpath} bact_learn bact_classify bact_mkmodel \ |
---|
28 | ${destroot}${prefix}/bin |
---|
29 | file mkdir ${destroot}${prefix}/share/doc/${name} |
---|
30 | xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING README bact.css index.html \ |
---|
31 | ${destroot}${prefix}/share/doc/${name} |
---|
32 | } |
---|
33 | |
---|
34 | livecheck.type regex |
---|
35 | livecheck.regex ${name}-(\[0-9.\]+)\\. |
---|