diff options
-rw-r--r-- | COPYING | 8 | ||||
-rw-r--r-- | Makefile | 17 | ||||
-rw-r--r-- | README.md | 30 |
3 files changed, 55 insertions, 0 deletions
diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..efa9df9 --- /dev/null +++ b/COPYING | |||
@@ -0,0 +1,8 @@ | |||
1 | Copyright (C) 2022 C. Duckworth <acdw@acdw.net> | ||
2 | |||
3 | Everyone is permitted to do whatever with this software, without | ||
4 | limitation. This software comes without any warranty whatsoever, | ||
5 | but with two pieces of advice: | ||
6 | |||
7 | - Don't hurt yourself. | ||
8 | - Make good choices. | ||
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b9c5dcd --- /dev/null +++ b/Makefile | |||
@@ -0,0 +1,17 @@ | |||
1 | # potato | ||
2 | |||
3 | DESTDIR = | ||
4 | PREFIX = /usr/local | ||
5 | |||
6 | CSC = csc | ||
7 | |||
8 | potato: potato.scm | ||
9 | $(CSC) -o $@ $< | ||
10 | |||
11 | .PHONY: install | ||
12 | install: potato | ||
13 | install -Dt $(DESTDIR)$(PREFIX)/bin/potato | ||
14 | |||
15 | .PHONY: uninstall | ||
16 | uninstall: | ||
17 | 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 @@ | |||
1 | # Potato | ||
2 | |||
3 | Here is a CHICKEN scheme command-line implementation of | ||
4 | [Potato](https://twitter.com/deathbybadger/status/1567425842526945280), a | ||
5 | single-player one-page RPG by Oliver Darkshire. | ||
6 | |||
7 | ## Installation | ||
8 | |||
9 | ``` | ||
10 | $ make | ||
11 | # make install | ||
12 | ``` | ||
13 | |||
14 | ### Requirements | ||
15 | |||
16 | `potato` requires CHICKEN scheme. It's only been tested with version 5. | ||
17 | |||
18 | ## Usage | ||
19 | |||
20 | Just run `potato`. | ||
21 | |||
22 | ## License | ||
23 | |||
24 | I'm not sure what the original game is licensed under, but the code here is | ||
25 | licensed with the Good Choices License. See COPYING for more details. | ||
26 | |||
27 | ## Contributing | ||
28 | |||
29 | Questions, comments, code contributions, and praise are all welcome | ||
30 | [via email](mailto:git@acdw.net). Enjoy! | ||