about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorCase Duckworth2022-09-07 23:11:42 -0500
committerCase Duckworth2022-09-07 23:11:42 -0500
commit875ac7589afcb752382f0c3776de63d1088e44fe (patch)
tree76044827f6abba32209e35751ae9bcf44c00fe1c
parentInitial commit (diff)
downloadpotato-875ac7589afcb752382f0c3776de63d1088e44fe.tar.gz
potato-875ac7589afcb752382f0c3776de63d1088e44fe.zip
Add COPYING, Makefile, README.md
-rw-r--r--COPYING8
-rw-r--r--Makefile17
-rw-r--r--README.md30
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 @@
1Copyright (C) 2022 C. Duckworth <acdw@acdw.net>
2
3Everyone is permitted to do whatever with this software, without
4limitation. This software comes without any warranty whatsoever,
5but 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
3DESTDIR =
4PREFIX = /usr/local
5
6CSC = csc
7
8potato: potato.scm
9 $(CSC) -o $@ $<
10
11.PHONY: install
12install: potato
13 install -Dt $(DESTDIR)$(PREFIX)/bin/potato
14
15.PHONY: uninstall
16uninstall:
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
3Here is a CHICKEN scheme command-line implementation of
4[Potato](https://twitter.com/deathbybadger/status/1567425842526945280), a
5single-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
20Just run `potato`.
21
22## License
23
24I'm not sure what the original game is licensed under, but the code here is
25licensed with the Good Choices License. See COPYING for more details.
26
27## Contributing
28
29Questions, comments, code contributions, and praise are all welcome
30[via email](mailto:git@acdw.net). Enjoy!