forked from ruricolist/spinneret
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathspinneret.asd
More file actions
55 lines (52 loc) · 1.64 KB
/
Copy pathspinneret.asd
File metadata and controls
55 lines (52 loc) · 1.64 KB
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
46
47
48
49
50
51
52
53
54
55
(defsystem "spinneret"
:description "Common Lisp HTML5 generator."
:version "3.0"
:author "Paul M. Rodriguez <pmr@ruricolist.com>"
:license "MIT"
:in-order-to ((test-op (test-op "spinneret/tests")))
:serial t
:depends-on ("alexandria"
"cl-ppcre"
"global-vars"
"serapeum"
"trivia"
"trivial-gray-streams"
"in-nomine")
:components ((:file "package")
(:file "special")
(:file "stream")
(:file "syntax")
(:file "tags")
(:file "spinneret")
(:file "run")
(:file "functions")
(:file "compile")
(:file "deftag")
(:file "dynamic")
(:file "interpret")))
(defsystem "spinneret/cl-markdown"
:description "Integration with cl-markdown"
:version "3.0"
:author "Paul M. Rodriguez <pmr@ruricolist.com>"
:license "MIT"
:serial t
:depends-on ("cl-markdown"
"spinneret")
:components ((:file "cl-markdown")))
(defsystem "spinneret/ps"
:description "Integration with Parenscript."
:author "Paul M. Rodriguez <pmr@ruricolist.com>"
:license "MIT"
:serial t
:depends-on ("spinneret" "parenscript")
:components ((:file "ps")))
(defsystem "spinneret/tests"
:description "Test suite for Spinneret"
:author "Paul M. Rodriguez <pmr@ruricolist.com>"
:license "MIT"
:depends-on ("fiveam"
"spinneret"
"spinneret/cl-markdown"
"spinneret/ps")
:perform (test-op (o c) (symbol-call :spinneret.tests :run-tests))
:components ((:file "tests")))