b63f1e0e91
TinySVM is an implementation of Support Vector Machines (SVMs) [Vapnik 95], [Vapnik 98] for the problem of pattern recognition. Support Vector Machines is a new generation learning algorithms based on recent advances in statistical learning theory, and applied to large number of real-world applications, such as text categorization, hand-written character recognition.
21 lines
463 B
Makefile
21 lines
463 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2010/05/19 11:47:15 obache Exp $
|
|
#
|
|
|
|
DISTNAME= TinySVM-0.09
|
|
CATEGORIES= math
|
|
MASTER_SITES= http://www.chasen.org/~taku/software/TinySVM/src/
|
|
|
|
MAINTAINER= obache@NetBSD.org
|
|
HOMEPAGE= http://www.chasen.org/~taku/software/TinySVM/
|
|
COMMENT= Tiny Support Vector Machines
|
|
LICENSE= gnu-lgpl-v2.1
|
|
|
|
PKG_DESTDIR_SUPPORT= user-destdir
|
|
|
|
GNU_CONFIGURE= yes
|
|
USE_LIBTOOL= yes
|
|
USE_LANGUAGES= c c++
|
|
|
|
TEST_TARGET= check
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|