Last change
on this file was
145485,
checked in by khindenburg@…, 2 years ago
|
vowpal_wabbit: remove obsolete variant
|
-
Property svn:eol-style set to
native
-
Property svn:keywords set to
Id
|
File size:
1.6 KB
|
Line | |
---|
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: Portfile 145485 2016-02-07 06:14:47Z khindenburg@macports.org $ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup github 1.0 |
---|
6 | |
---|
7 | github.setup JohnLangford vowpal_wabbit 8.1.1 |
---|
8 | categories math |
---|
9 | maintainers hum openmaintainer |
---|
10 | |
---|
11 | description a fast online learning tool |
---|
12 | long_description Vowpal Wabbit is the essence of speed in machine learning, able to \ |
---|
13 | learn from terafeature datasets with ease. Via parallel learning, \ |
---|
14 | it can exceed the throughput of any single machine network interface \ |
---|
15 | when doing linear learning, a first amongst learning algorithms. |
---|
16 | |
---|
17 | homepage http://hunch.net/~vw/ |
---|
18 | platforms darwin |
---|
19 | license BSD |
---|
20 | |
---|
21 | checksums rmd160 48b46b1de91cdf65cb43bab4297d84e9349b94f2 \ |
---|
22 | sha256 637729dc998821c7a6b94836a08d92f3692b1d6751692aaf2505eb4aa93967c8 |
---|
23 | |
---|
24 | depends_build port:libtool \ |
---|
25 | port:autoconf \ |
---|
26 | port:automake |
---|
27 | depends_lib port:boost |
---|
28 | |
---|
29 | patchfiles-append patch-autogen.sh.diff |
---|
30 | |
---|
31 | use_autoreconf yes |
---|
32 | autoreconf.cmd ./autogen.sh |
---|
33 | autoreconf.args |
---|
34 | |
---|
35 | configure.args-append \ |
---|
36 | --with-boost-libdir=${prefix}/lib \ |
---|
37 | --with-boost-program-options=boost_program_options-mt |
---|
38 | |
---|
39 | test.run yes |
---|
40 | |
---|
41 | post-destroot { |
---|
42 | # install an additional document. |
---|
43 | set doc_dir ${destroot}${prefix}/share/doc/${name} |
---|
44 | xinstall -d ${doc_dir} |
---|
45 | xinstall -m 644 -W ${worksrcpath} \ |
---|
46 | AUTHORS \ |
---|
47 | COPYING \ |
---|
48 | LICENSE \ |
---|
49 | README.md \ |
---|
50 | ${doc_dir} |
---|
51 | } |
---|
Note: See
TracBrowser
for help on using the repository browser.