mirror of
https://github.com/macports/macports-ports.git
synced 2026-07-12 18:20:25 -07:00
remove outdated $Id when found closes https://trac.macports.org/ticket/52490
52 lines
1.9 KiB
Tcl
52 lines
1.9 KiB
Tcl
# -*- 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
|
|
|
|
name wapiti
|
|
version 1.5.0
|
|
categories math textproc
|
|
maintainers nomaintainer
|
|
|
|
description A simple and fast discriminative sequence labelling toolkit
|
|
long_description Wapiti is a very fast toolkit for segmenting and labeling \
|
|
sequences with discriminative models. It is based on maxent \
|
|
models, maximum entropy Markov models and linear-chain CRF \
|
|
and proposes various optimization and regularization methods \
|
|
to improve both the computational complexity and the \
|
|
prediction performance of standard models. Wapiti is ranked \
|
|
first on the sequence tagging task for several month on \
|
|
MLcomp web site.
|
|
|
|
homepage http://wapiti.limsi.fr/
|
|
platforms darwin
|
|
license BSD
|
|
|
|
master_sites ${homepage}
|
|
checksums rmd160 8ca5a2db7a1e81e6871a72799e1bd35bf0731ec1 \
|
|
sha256 4726101734acde4e2300f2a63991b76bbcf00d2b1897bd15277c9c9ebdfb654a
|
|
|
|
use_configure no
|
|
|
|
variant universal {}
|
|
|
|
build.args CC=${configure.cc} CFLAGS="${configure.cflags} [get_canonical_archflags]"
|
|
build.target wapiti
|
|
|
|
destroot.args PREFIX=${prefix}
|
|
|
|
post-destroot {
|
|
# install additional documents.
|
|
set docdir ${prefix}/share/doc/${name}
|
|
xinstall -d ${destroot}${docdir}
|
|
xinstall -m 644 -W ${worksrcpath} \
|
|
COPYING HISTORY README.mkd \
|
|
${destroot}${docdir}
|
|
# install examples.
|
|
set exroot ${prefix}/share/examples
|
|
xinstall -d ${destroot}${exroot}
|
|
copy ${worksrcpath}/dat ${destroot}${exroot}/${name}
|
|
}
|
|
|
|
livecheck.type regex
|
|
livecheck.regex "${name}-(\\d+(?:\\.\\d+)*)${extract.suffix}"
|