bccdd47e3d
The Chatbot::Eliza module implements the classic Eliza algorithm. The original Eliza program was written by Joseph Weizenbaum and described in the Communications of the ACM in 1967. Eliza is a mock Rogerian psychotherapist. It prompts for user input, and uses a simple transformation algorithm to change user input into a follow-up question.
23 lines
471 B
Makefile
23 lines
471 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/10/06 03:43:08 kevlo Exp $
|
|
|
|
COMMENT= "clone of the classic Eliza program"
|
|
|
|
DISTNAME= Chatbot-Eliza-0.97
|
|
PKGNAME= p5-${DISTNAME}
|
|
CATEGORIES= net perl5
|
|
NEED_VERSION= 1.470
|
|
|
|
MAINTAINER= Kevin Lo <kevlo@openbsd.org>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
MASTER_SITES= ${MASTER_SITE_PERL_CPAN}
|
|
MASTER_SITE_SUBDIR= Chatbot
|
|
|
|
CONFIGURE_STYLE= perl
|
|
|
|
.include <bsd.port.mk>
|