summaryrefslogtreecommitdiff
path: root/devel/fann/Makefile
diff options
context:
space:
mode:
authorgdt <gdt@pkgsrc.org>2006-10-04 20:12:34 +0000
committergdt <gdt@pkgsrc.org>2006-10-04 20:12:34 +0000
commit4039b51e3f8641e58d7858ae80c8f07103a14d3e (patch)
tree3ec0d4e22b615ec8545ae987d10fc7b5e3521e96 /devel/fann/Makefile
parent00d338852ed6da0b22bda651e4507d45ee174e7d (diff)
downloadpkgsrc-4039b51e3f8641e58d7858ae80c8f07103a14d3e.tar.gz
Fast Artificial Neural Network Library implements multilayer
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.
Diffstat (limited to 'devel/fann/Makefile')
-rw-r--r--devel/fann/Makefile23
1 files changed, 23 insertions, 0 deletions
diff --git a/devel/fann/Makefile b/devel/fann/Makefile
new file mode 100644
index 00000000000..73e84dee006
--- /dev/null
+++ b/devel/fann/Makefile
@@ -0,0 +1,23 @@
+# $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"