pkgsrc-wip/libneural/Makefile
Juan Romero Pardines c83a39e17d Initial import of libneural 1.0.3.
Package provided by Rasputin <rasputin@idoru.mine.nu> via PR pkg/21878.

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 (which I tried and found to be pretty useless for my
application anyway).
2003-09-17 16:56:45 +00:00

22 lines
662 B
Makefile

# $NetBSD: Makefile,v 1.1.1.1 2003/09/17 16:56:45 xtraeme Exp $
DISTNAME= libneural-1.0.3
CATEGORIES= devel
MASTER_SITES= http://ieee.uow.edu.au/~daniel/software/libneural/
MAINTAINER= rasputin@idoru.mine.nu
HOMEPAGE= http://ieee.uow.edu.au/~daniel/software/libneural/
COMMENT= C++ library for creating 3-layer backpropagation neural networks
CONFIGURE_PREFIX+= ${PREFIX}
MAKE_FLAGS+= prefix=${PREFIX}
post-patch:
${CHMOD} +x ${WRKSRC}/configure
post-install:
${MKDIR} ${PREFIX}/share/${DISTNAME}
${CP} ${WRKSRC}/README ${PREFIX}/share/${DISTNAME}/README
${CP} -r ${WRKSRC}/examples ${PREFIX}/share/${DISTNAME}/examples
.include "../../mk/bsd.pkg.mk"