Revision: 100809 https://trac.macports.org/changeset/100809 Author: hum@macports.org Date: 2012-12-26 08:02:53 -0800 (Wed, 26 Dec 2012) Log Message: ----------- New port: yakmo @2012-12-26 - C++ implementation of robust, efficient alternative k-means clustering. Added Paths: ----------- trunk/dports/math/yakmo/ trunk/dports/math/yakmo/Portfile Added: trunk/dports/math/yakmo/Portfile =================================================================== --- trunk/dports/math/yakmo/Portfile (rev 0) +++ trunk/dports/math/yakmo/Portfile 2012-12-26 16:02:53 UTC (rev 100809) @@ -0,0 +1,41 @@ +# -*- 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 +# $Id$ + +PortSystem 1.0 + +name yakmo +version 2012-12-26 +categories math textproc +maintainers hum openmaintainer + +description C++ implementation of robust, efficient alternative k-means clustering + +long_description Yakmo implements robust, efficient k-means clustering with \ + triangular inequality and smart initialization, while \ + supporting alternative clustering outputs. The use of the \ + triangular inequality allows k-means to skip unnecessary \ + distance calculations, while the smart initialization by \ + randomized seeding (k-means++) not only improves solution \ + accuracy but also accelerates the algorithm convergence. In \ + addition, you can obtain alternative clusterings via \ + orthogonalization. + +homepage http://www.tkl.iis.u-tokyo.ac.jp/~ynaga/yakmo/ +platforms darwin +license {GPL-2 LGPL-2.1} + +master_sites ${homepage} +checksums rmd160 4c850cae3eb0297450210a6935f886551bf84069 \ + sha256 11c4b0f8e0205943be98ee48d8ab5ff57702d49b93c85ab495864dd76f35151f + +post-destroot { + # install additional documents. + set doc_dir ${destroot}${prefix}/share/doc/${name} + file mkdir ${doc_dir} + xinstall -m 644 -W ${worksrcpath} \ + AUTHORS COPYING GPL LGPL README \ + ${doc_dir} +} + +livecheck.type regex +livecheck.regex ${name}-(\\d+-\\d+-\\d+)\\. Property changes on: trunk/dports/math/yakmo/Portfile ___________________________________________________________________ Added: svn:keywords + Id Added: svn:eol-style + native
participants (1)
-
hum@macports.org