diff options
author | cjep <cjep@pkgsrc.org> | 2002-11-18 17:10:17 +0000 |
---|---|---|
committer | cjep <cjep@pkgsrc.org> | 2002-11-18 17:10:17 +0000 |
commit | dc392c4b9f06be5558f23a8a0d4b6d547f99a8a1 (patch) | |
tree | 23e2b649a03d2ab30fbdb9a4d502ac87614ae537 /shells | |
parent | 2b50e11988d0f015e8bce4e560d4e0491c62dcbf (diff) | |
download | pkgsrc-dc392c4b9f06be5558f23a8a0d4b6d547f99a8a1.tar.gz |
Initial import of the MUD-Shell into the NetBSD packages collection as
shells/mudsh.
Is there any reason why a shell (or command line) cannot be as
tolerant or as intelligent as a text adventure game like Zork, or a
MUD (Multi User Dungeon)? Is there any reason why a shell cannot work
like such a game? ("Go North", etc.)
Actually, the answer is no and this is a perl implementation to prove it.
Have fun, and don't get eaten by a Grue!
Diffstat (limited to 'shells')
-rw-r--r-- | shells/mudsh/DESCR | 7 | ||||
-rw-r--r-- | shells/mudsh/Makefile | 27 | ||||
-rw-r--r-- | shells/mudsh/PLIST | 2 | ||||
-rw-r--r-- | shells/mudsh/distinfo | 4 |
4 files changed, 40 insertions, 0 deletions
diff --git a/shells/mudsh/DESCR b/shells/mudsh/DESCR new file mode 100644 index 00000000000..83d9cb6fd68 --- /dev/null +++ b/shells/mudsh/DESCR @@ -0,0 +1,7 @@ +Is there any reason why a shell (or command line) cannot be as +tolerant or as intelligent as a text adventure game like Zork, or a +MUD (Multi User Dungeon)? Is there any reason why a shell cannot work +like such a game? ("Go North", etc.) + +Actually, the answer is no and this is a perl implementation to prove it. +Have fun, and don't get eaten by a Grue! diff --git a/shells/mudsh/Makefile b/shells/mudsh/Makefile new file mode 100644 index 00000000000..99976a6bb32 --- /dev/null +++ b/shells/mudsh/Makefile @@ -0,0 +1,27 @@ +# $NetBSD: Makefile,v 1.1.1.1 2002/11/18 17:10:17 cjep Exp $ +# + +DISTNAME= mudsh +PKGNAME= mudsh-20010311 +CATEGORIES= shells +MASTER_SITES= http://www.xirium.com/tech/mud-shell/download/ +EXTRACT_SUFX= # empty + +MAINTAINER= packages@netbsd.org +HOMEPAGE= http://www.xirium.com/tech/mud-shell/index.html +COMMENT= M.U.D. game-like shell + +WRKSRC= ${WRKDIR} +USE_BUILDLINK2=YES +EXTRACT_CMD= ${CP} ${DOWNLOADED_DISTFILE} ${WRKSRC} + +do-build: + @${CP} ${WRKSRC}/mudsh ${WRKSRC}/mudsh.orig + @${SED} -e 's|/usr/local/bin/perl|${LOCALBASE}/bin/perl|g' \ + ${WRKSRC}/mudsh.orig >${WRKSRC}/mudsh + +do-install: + ${INSTALL_SCRIPT} ${WRKSRC}/mudsh ${PREFIX}/bin + +.include "../../lang/perl5/buildlink2.mk" +.include "../../mk/bsd.pkg.mk" diff --git a/shells/mudsh/PLIST b/shells/mudsh/PLIST new file mode 100644 index 00000000000..c4bc942c0a9 --- /dev/null +++ b/shells/mudsh/PLIST @@ -0,0 +1,2 @@ +@comment $NetBSD: PLIST,v 1.1.1.1 2002/11/18 17:10:17 cjep Exp $ +bin/mudsh diff --git a/shells/mudsh/distinfo b/shells/mudsh/distinfo new file mode 100644 index 00000000000..44cd3416efd --- /dev/null +++ b/shells/mudsh/distinfo @@ -0,0 +1,4 @@ +$NetBSD: distinfo,v 1.1.1.1 2002/11/18 17:10:17 cjep Exp $ + +SHA1 (mudsh) = 545f3a095cad25e0334df598a63ced3a1c3aeef1 +Size (mudsh) = 21309 bytes |