openbsd-ports/math/libneural/Makefile
jasper 980a2b5d3d 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.
2008-09-08 18:46:57 +00:00

29 lines
564 B
Makefile

# $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>