From 875ac7589afcb752382f0c3776de63d1088e44fe Mon Sep 17 00:00:00 2001 From: Case Duckworth Date: Wed, 7 Sep 2022 23:11:42 -0500 Subject: Add COPYING, Makefile, README.md --- COPYING | 8 ++++++++ Makefile | 17 +++++++++++++++++ README.md | 30 ++++++++++++++++++++++++++++++ 3 files changed, 55 insertions(+) create mode 100644 COPYING create mode 100644 Makefile create mode 100644 README.md diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..efa9df9 --- /dev/null +++ b/COPYING @@ -0,0 +1,8 @@ +Copyright (C) 2022 C. Duckworth + +Everyone is permitted to do whatever with this software, without +limitation. This software comes without any warranty whatsoever, +but with two pieces of advice: + +- Don't hurt yourself. +- Make good choices. diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b9c5dcd --- /dev/null +++ b/Makefile @@ -0,0 +1,17 @@ +# potato + +DESTDIR = +PREFIX = /usr/local + +CSC = csc + +potato: potato.scm + $(CSC) -o $@ $< + +.PHONY: install +install: potato + install -Dt $(DESTDIR)$(PREFIX)/bin/potato + +.PHONY: uninstall +uninstall: + rm -f $(DESTDIR)$(PREFIX)/bin/potato diff --git a/README.md b/README.md new file mode 100644 index 0000000..cec0a63 --- /dev/null +++ b/README.md @@ -0,0 +1,30 @@ +# Potato + +Here is a CHICKEN scheme command-line implementation of +[Potato](https://twitter.com/deathbybadger/status/1567425842526945280), a +single-player one-page RPG by Oliver Darkshire. + +## Installation + +``` +$ make +# make install +``` + +### Requirements + +`potato` requires CHICKEN scheme. It's only been tested with version 5. + +## Usage + +Just run `potato`. + +## License + +I'm not sure what the original game is licensed under, but the code here is +licensed with the Good Choices License. See COPYING for more details. + +## Contributing + +Questions, comments, code contributions, and praise are all welcome +[via email](mailto:git@acdw.net). Enjoy! -- cgit 1.4.1-21-gabe81