forked from eudoxia0/cl-yaml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcl-yaml.asd
26 lines (26 loc) · 926 Bytes
/
cl-yaml.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
(defsystem cl-yaml
:author "Fernando Borretti <[email protected]>"
:maintainer "Fernando Borretti <[email protected]>"
:license "MIT"
:version "0.1"
:homepage "https://github.com/eudoxia0/cl-yaml"
:bug-tracker "https://github.com/eudoxia0/cl-yaml/issues"
:source-control (:git "[email protected]:eudoxia0/cl-yaml.git")
:depends-on (:cl-libyaml
:alexandria
:cl-ppcre
:parse-number)
:components ((:module "src"
:serial t
:components
((:file "error")
(:file "float")
(:file "scalar")
(:file "parser")
(:file "emitter")
(:file "yaml"))))
:description "A YAML parser and emitter."
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op cl-yaml-test))))