From 7a940b9a0489c7904d999cb62d6a146594ba6094 Mon Sep 17 00:00:00 2001 From: jgart <47760695+jgarte@users.noreply.github.com> Date: Sat, 3 Dec 2022 08:56:41 -0600 Subject: [PATCH] Add asd file --- sbcli.asd | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 sbcli.asd diff --git a/sbcli.asd b/sbcli.asd new file mode 100644 index 0000000..6700b50 --- /dev/null +++ b/sbcli.asd @@ -0,0 +1,23 @@ +(in-package asdf-user) + +(defsystem sbcli + :description "REPL for my SBCL needs" + :long-description "A better REPL for SBCL. + sbcli handles errors gracefully, is not too verbose, has readline capabilities, + including multiline input and reset, and has optional syntax highlighting + capabilities using pygmentize." + :version "0.1.4" + :author "Veit Heller " + :license "GPLv3" + :depends-on + ("alexandria" + "cl-readline" + "str") + :components + ((:module "" + :serial t + :components + ((:file "repl")))) + :build-operation "program-op" + :entry-point "repl:sbcli" + :build-pathname #.(merge-pathnames #p"repl" (uiop:getcwd)))