-
Notifications
You must be signed in to change notification settings - Fork 11
/
erudite.asd
29 lines (29 loc) · 1 KB
/
erudite.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
(asdf:defsystem #:erudite
:description "Literate Programming System for Common Lisp"
:author "Mariano Montone <marianomontone@gmail.com>"
:license "MIT"
:serial t
:homepage "https://github.com/mmontone/erudite"
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:components ((:file "package")
(:file "config")
(:file "util")
(:file "commands")
(:module :syntax
:components
((:file "erudite")
(:file "latex")
(:file "sphinx")
(:file "markdown")
(:file "org")))
(:file "erudite"))
:depends-on (:cl-fad
:cl-ppcre
:alexandria
:split-sequence
:cl-template
:log4cl
:swank-client)
:in-order-to ((asdf:test-op (asdf:test-op :erudite-test))))