collect.asd 589 B

123456789101112131415161718192021
  1. ;;;; collect.asd
  2. ;;;;
  3. ;;;; Copyright (c) 2015 Samuel W. Flint <swflint@flintfam.org>
  4. (asdf:defsystem #:collect
  5. :description "Describe collect here"
  6. :author "Samuel W. Flint <swflint@flintfam.org>"
  7. :license "GNU GPLv3 or later"
  8. :depends-on (#:restas
  9. #:html-template
  10. #:cl-who
  11. #:lass
  12. #:parenscript
  13. #:sqlite
  14. #:parse-number
  15. #:esrap)
  16. :serial t
  17. :components ((:file "package")
  18. (:file "templates")
  19. (:file "macros")
  20. (:file "collect")))