9364b8b6c8
Basic bot system designed to make it easy to do simple bots, optionally forking longer processes (like searches) concurrently in the background.
23 lines
512 B
Makefile
23 lines
512 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2009/05/13 00:07:51 simon Exp $
|
|
|
|
COMMENT = simple irc bot baseclass
|
|
|
|
MODULES = cpan
|
|
DISTNAME = Bot-BasicBot-0.81
|
|
CATEGORIES = net
|
|
|
|
# Perl
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM = Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
RUN_DEPENDS = ::net/p5-POE-Component-IRC
|
|
|
|
post-install:
|
|
${INSTALL_DATA_DIR} ${PREFIX}/share/examples/p5-Bot-BasicBot
|
|
${INSTALL_DATA} ${WRKSRC}/examples/*.pl \
|
|
${PREFIX}/share/examples/p5-Bot-BasicBot
|
|
|
|
.include <bsd.port.mk>
|