coleslaw/coleslaw-static.asd
Brit Butler e81f01440d API changes, Static Indices rewrite and more...
* Revamp API intersection of indices and posts.
* Rewrite the static implementation of indices.
* Add split-sequence dep to coleslaw-static
* Various bugfixes and cleanups to import plugin.
* Beginnings of hunchentoot plugin.
* Update TODO.
2011-04-22 18:37:22 -04:00

18 lines
896 B
Common Lisp

(defsystem :coleslaw-static
:name "coleslaw-static"
:description "Flexible Lisp Blogware, Static backend"
:version "0.0.1"
:maintainer "Brit Butler <redline6561@gmail.com>"
:author "Brit Butler <redline6561@gmail.com>"
:licence "LLGPL"
:depends-on (:coleslaw :trivial-timers :cl-store :split-sequence)
:components ((:module static
:components ((:file "coleslaw")
(:file "comments"
:depends-on ("coleslaw"))
(:file "posts"
:depends-on ("coleslaw"))
(:file "indices"
:depends-on ("posts"))
(:file "util"
:depends-on ("coleslaw"))))))