import libneural 1.0.3

libneural is an extremely tiny library for creating a software three
layer backpropagation neural network. This is useful for a very wide
variety of pattern recognition and classification problems. It is
written in C++, based on the standard algorithm with NO fancy features
like bias terms or momentum.
This commit is contained in:
jasper 2008-09-08 18:46:57 +00:00
parent 7dfacac8f3
commit 980a2b5d3d
4 changed files with 44 additions and 0 deletions

28
math/libneural/Makefile Normal file
View File

@ -0,0 +1,28 @@
# $OpenBSD: Makefile,v 1.1.1.1 2008/09/08 18:46:57 jasper Exp $
SHARED_ONLY= Yes
COMMENT= three layer backpropagation neural network library
DISTNAME= libneural-1.0.3
SHARED_LIBS += neural 0.0 # .0.0
CATEGORIES= math devel
HOMEPAGE= http://ieee.uow.edu.au/~daniel/software/libneural/
# LGPLv2
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
MASTER_SITES= ${HOMEPAGE}
USE_LIBTOOL= Yes
CONFIGURE_STYLE= gnu
post-extract:
chmod +x ${WRKSRC}/configure
.include <bsd.port.mk>

5
math/libneural/distinfo Normal file
View File

@ -0,0 +1,5 @@
MD5 (libneural-1.0.3.tar.gz) = om8cubtlrIaVwL3YU7XiLw==
RMD160 (libneural-1.0.3.tar.gz) = bkVWJ0kib4drQjJb6YTOOobSV0k=
SHA1 (libneural-1.0.3.tar.gz) = ObErGehjrPdJJSIk0LJJkn/ypm4=
SHA256 (libneural-1.0.3.tar.gz) = 6KdC2UPIzGGRPuFriKqcY2AgZXK25n92TkBD5pohzF4=
SIZE (libneural-1.0.3.tar.gz) = 179236

5
math/libneural/pkg/DESCR Normal file
View File

@ -0,0 +1,5 @@
libneural is an extremely tiny library for creating a software three
layer backpropagation neural network. This is useful for a very wide
variety of pattern recognition and classification problems. It is
written in C++, based on the standard algorithm with NO fancy features
like bias terms or momentum.

6
math/libneural/pkg/PLIST Normal file
View File

@ -0,0 +1,6 @@
@comment $OpenBSD: PLIST,v 1.1.1.1 2008/09/08 18:46:57 jasper Exp $
include/neuron.h
include/nnwork.h
lib/libneural.a
lib/libneural.la
@lib lib/libneural.so.${LIBneural_VERSION}