From 6b47223b3613defa34bf8499b0f622ee64c44060 Mon Sep 17 00:00:00 2001 From: plugd Date: Fri, 1 Sep 2023 10:08:48 +0200 Subject: [PATCH] Removed unnecessary dependency. --- README | 13 +++++++++++++ botbot.scm | 2 +- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/README b/README index f64a7fb..d999887 100644 --- a/README +++ b/README @@ -10,6 +10,19 @@ The logic behind message responses is handled by a function defined in a text file provided at runtime, making the actual functioning of the bot highly (overly?) configurable. +Installation +------------ + +You'll need a Chicken 5 build environment to compile the bot. +With this, and the necessary eggs in place, use + + csc bot.scm + +to produce the binary. Move this to wherever makes you happy. + +Note: "necessary eggs" includes machable, srfi-1, srfi-13, srfi-18, + tcp6 and openssl. + Usage ----- diff --git a/botbot.scm b/botbot.scm index 34bfd48..85a5ca9 100644 --- a/botbot.scm +++ b/botbot.scm @@ -23,7 +23,7 @@ (chicken process-context) (chicken irregex) matchable srfi-13 srfi-1 srfi-18 - uri-common tcp6 openssl) + tcp6 openssl) ;; Globals -- 2.20.1