diff options
| -rw-r--r-- | README.md | 24 | ||||
| -rw-r--r-- | haiku-book.asd | 6 |
2 files changed, 30 insertions, 0 deletions
diff --git a/README.md b/README.md new file mode 100644 index 0000000..daea648 --- /dev/null +++ b/README.md @@ -0,0 +1,24 @@ +HAIKU BOOK +============= + +A very simple book of haiku implemented in common lisp and CLIM. + + +## How to install + +Prerequisistes: + +- sbcl +- quicklisp +- mcclim + +Use the following process to install and run: + +```lisp +(ql:quickload :mcclim) +(ql:quickload :haiku-book) +(in-package :haiku-book/frame) +(clim:find-application-frame 'read-haiku) +``` + +Enjoy! diff --git a/haiku-book.asd b/haiku-book.asd new file mode 100644 index 0000000..1a16050 --- /dev/null +++ b/haiku-book.asd @@ -0,0 +1,6 @@ +(defsystem + haiku-book + :class :package-inferred-system + :depends-on (:haiku-book/frame) + :components + ((:static-file "story.text"))) |
