Flexible Lisp Blogware. Fork for personal use. Mirrored from https://github.com/kingcons/coleslaw originally.

coleslaw.asd 972B

12345678910111213141516171819202122232425262728293031
  1. (defsystem #:coleslaw
  2. :name "coleslaw-core"
  3. :description "Flexible Lisp Blogware"
  4. :version "0.0.3"
  5. :license "BSD"
  6. :author "Brit Butler <redline6561@gmail.com>"
  7. :pathname "src/"
  8. :depends-on (:closure-template :iolib.os :local-time :alexandria)
  9. :serial t
  10. :components ((:file "packages")
  11. (:file "coleslaw")
  12. (:file "themes")
  13. (:file "posts")
  14. (:file "indices")
  15. (:file "plugins"))
  16. :in-order-to ((test-op (load-op coleslaw-tests)))
  17. :perform (test-op :after (op c)
  18. (funcall (intern "RUN!" :coleslaw-tests)
  19. (intern "COLESLAW-TESTS" :coleslaw-tests))))
  20. (defsystem #:coleslaw-tests
  21. :depends-on (coleslaw fiveam)
  22. :pathname "tests/"
  23. :serial t
  24. :components ((:file "packages")
  25. (:file "tests")))
  26. (defmethod operation-done-p ((op test-op)
  27. (c (eql (find-system :coleslaw))))
  28. (values nil))