4039b51e3f
artificial neural networks in C with support for both fully connected and sparsely connected networks. Cross-platform execution in both fixed and floating point are supported. It includes a framework for easy handling of training data sets. It is easy to use, versatile, well documented, and fast. Bindings to other programming languages and a GUI are also available.
23 lines
537 B
Makefile
23 lines
537 B
Makefile
# $NetBSD: Makefile,v 1.1.1.1 2006/10/04 20:12:34 gdt Exp $
|
|
#
|
|
|
|
DISTNAME= fann-2.0.0
|
|
CATEGORIES= devel
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=fann/}
|
|
|
|
MAINTAINER= gdt@NetBSD.org
|
|
HOMEPAGE= http://leenissen.dk/fann/
|
|
COMMENT= Fast Artificial Neural Network
|
|
|
|
USE_PKGLOCALEDIR= yes
|
|
USE_LIBTOOL= yes
|
|
USE_TOOLS+= pkg-config
|
|
GNU_CONFIGURE= yes
|
|
|
|
PKGCONFIG_OVERRIDE+= fann.pc.in
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/fann
|
|
(cd ${WRKSRC} && ${INSTALL_DATA} doc/* ${PREFIX}/share/doc/fann)
|
|
|
|
.include "../../mk/bsd.pkg.mk"
|