From b5631494e2b914e5df3e09bc6c95be6febdcaed5 Mon Sep 17 00:00:00 2001 From: "Eric S. Raymond" Date: Tue, 12 Oct 2010 20:43:54 -0400 Subject: [PATCH] Lift repository from RCS to git. Also, delete some obsolete shipper machinery. --- .gitignore | 5 +++++ Makefile | 40 ++++++++++++++++++++++++++++++++++++++++ wumpus.xml | 46 ++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 91 insertions(+) create mode 100644 .gitignore create mode 100644 Makefile create mode 100644 wumpus.xml diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..702512b --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +wumpus +superhack +*.o +*.1 +*.6 diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..f75090c --- /dev/null +++ b/Makefile @@ -0,0 +1,40 @@ +# +# Makefile for `Hunt the Wumpus' and `Superhack' games +# +VERS=$(shell sed MANIFEST + @(cd ..; ln -s wumpus wumpus-$(VERS)) + (cd ..; tar -czvf wumpus/wumpus-$(VERS).tar.gz `cat wumpus/MANIFEST`) + @(cd ..; rm wumpus-$(VERS)) + +dist: wumpus-$(VERS).tar.gz + diff --git a/wumpus.xml b/wumpus.xml new file mode 100644 index 0000000..fbfbfd7 --- /dev/null +++ b/wumpus.xml @@ -0,0 +1,46 @@ + + + +wumpus +6 +Sep 7 1992 + + +wumpus +the classic game of Hunt the Wumpus + + + + + wumpus + + + superhack + + + + +DESCRIPTION + +wumpus is a faithful transcription of +the 1974 game WUMPUS for the Atari, the first computer game to +maintain a consistent external map. An article on the history of this +classic game can be found here. + +superhack is a structurally similar +game with a different premise. + + +AUTHORS +The original Atari game was designed and written by Gregory Yob. +This version was cloned from the original BASIC sources by Eric +S. Raymond esr@snark.thyrsus.com. See ESR's home page at +http://www.catb.org/~esr/ +for updates and other resources. + + + -- 2.31.1