forked from koji-kojiro/cl-repl
-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-repl.asd
39 lines (38 loc) · 1.73 KB
/
cl-repl.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
(asdf:defsystem cl-repl
:version "0.7.1"
:author "TANI Kojiro"
:maintainer "Lisp Maintainers (https://github.com/lisp-maintainers/cl-repl)"
:license "GPLv3"
:build-operation "program-op"
:build-pathname "cl-repl"
:entry-point "cl-repl:main"
:depends-on (#:uiop
#:unix-opts
#:cl-ppcre
#:cl-readline)
:serial t
:components ((:module "src" :components ((:file "package")
(:file "util")
(:file "color")
(:file "color-scheme")
(:file "highlight")
(:file "keymap")
(:file "pager")
(:file "command")
(:file "shell")
(:file "completer")
(:file "debugger")
(:file "inspector")
(:file "input")
(:file "history")
(:file "repl")
(:file "keymaps")
(:file "bind")
(:file "main"))))
:description "A full-featured repl implementation."
:long-description "A full-featured repl implementation.")
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c)
:executable t
:compression t))