-
Notifications
You must be signed in to change notification settings - Fork 4
/
common-doc.asd
45 lines (45 loc) · 1.57 KB
/
common-doc.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
40
41
42
43
44
45
(defsystem common-doc
:author "Fernando Borretti <[email protected]>"
:maintainer "Fernando Borretti <[email protected]>"
:license "MIT"
:version "0.2"
:homepage "https://github.com/CommonDoc/common-doc"
:bug-tracker "https://github.com/CommonDoc/common-doc/issues"
:source-control (:git "[email protected]:CommonDoc/common-doc.git")
:depends-on (:trivial-types
:local-time
:quri
:anaphora
:alexandria
:closer-mop)
:components ((:module "src"
:serial t
:components
((:file "packages")
(:file "define")
(:file "error")
(:file "file")
(:file "classes")
(:file "metadata")
(:file "constructors")
(:file "macros")
(:file "format")
(:file "util")
(:module "operations"
:serial t
:components
((:file "traverse")
(:file "figures")
(:file "tables")
(:file "links")
(:file "text")
(:file "unique-ref")
(:file "toc")
(:file "equality")))
(:file "print"))))
:description "A framework for representing and manipulating documents as CLOS
objects."
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op common-doc-test))))