Skip to content

Commit

Permalink
Add asd file
Browse files Browse the repository at this point in the history
  • Loading branch information
jgarte authored Dec 3, 2022
1 parent 23ba58e commit 7a940b9
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions sbcli.asd
Original file line number Diff line number Diff line change
@@ -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 <[email protected]>"
: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)))

0 comments on commit 7a940b9

Please sign in to comment.