-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmarkedit.asd
29 lines (29 loc) · 1.03 KB
/
markedit.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
(defsystem markedit
:author "Fernando Borretti <[email protected]>"
:maintainer "Fernando Borretti <[email protected]>"
:license "MIT"
:version "0.1"
:homepage "https://github.com/ceramic/markedit"
:bug-tracker "https://github.com/ceramic/markedit/issues"
:source-control (:git "[email protected]:ceramic/markedit.git")
:depends-on (:ceramic
:lucerne
:3bmd
:3bmd-ext-code-blocks)
:components ((:module "assets"
:components
((:module "css"
:components
((:static-file "style.css")))
(:module "js"
:components
((:static-file "scripts.js")))))
(:module "src"
:serial t
:components
((:file "markedit"))))
:description "A Markdown editor example with Ceramic."
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op markedit-test))))