16 lines
492 B
Text
16 lines
492 B
Text
|
(defsystem flute
|
||
|
:author "Bo Yao <icerove@gmail.com"
|
||
|
:license "BSD"
|
||
|
:version "0.1"
|
||
|
:components ((:module "src"
|
||
|
:serial t
|
||
|
:components
|
||
|
((:file "flute"))))
|
||
|
:description "A beautiful, easilly composable html generation library"
|
||
|
:long-description
|
||
|
#.(uiop:read-file-string
|
||
|
(uiop:subpathname *load-pathname* "README.md"))
|
||
|
:in-order-to ((test-op (test-op flute-test)))
|
||
|
:depends-on (:assoc-utils
|
||
|
:let-over-lambda))
|