2012-08-14 23:56:25 -04:00
|
|
|
(defsystem #:coleslaw
|
2011-02-19 18:25:02 -05:00
|
|
|
:name "coleslaw-core"
|
2011-04-16 15:45:37 -04:00
|
|
|
:description "Flexible Lisp Blogware"
|
2012-08-21 15:57:01 -04:00
|
|
|
:version "0.4"
|
2012-08-14 23:56:25 -04:00
|
|
|
:license "BSD"
|
2011-02-19 18:25:02 -05:00
|
|
|
:author "Brit Butler <redline6561@gmail.com>"
|
2012-08-14 23:56:25 -04:00
|
|
|
:pathname "src/"
|
2012-08-21 23:50:36 -04:00
|
|
|
:depends-on (:closure-template :iolib.os :alexandria :cl-fad :local-time)
|
2012-08-14 23:56:25 -04:00
|
|
|
:serial t
|
|
|
|
:components ((:file "packages")
|
2012-08-18 23:00:33 -04:00
|
|
|
(:file "config")
|
|
|
|
(:file "git")
|
2012-08-14 23:56:25 -04:00
|
|
|
(:file "themes")
|
2012-08-21 21:20:01 -04:00
|
|
|
(:file "plugins")
|
|
|
|
(:file "coleslaw")
|
2012-08-21 23:50:36 -04:00
|
|
|
(:file "feeds")
|
2012-08-14 23:56:25 -04:00
|
|
|
(:file "posts")
|
2012-08-21 21:20:01 -04:00
|
|
|
(:file "indices"))
|
2012-08-14 23:56:25 -04:00
|
|
|
:in-order-to ((test-op (load-op coleslaw-tests)))
|
|
|
|
:perform (test-op :after (op c)
|
|
|
|
(funcall (intern "RUN!" :coleslaw-tests)
|
|
|
|
(intern "COLESLAW-TESTS" :coleslaw-tests))))
|
|
|
|
|
|
|
|
(defsystem #:coleslaw-tests
|
|
|
|
:depends-on (coleslaw fiveam)
|
|
|
|
:pathname "tests/"
|
|
|
|
:serial t
|
|
|
|
:components ((:file "packages")
|
|
|
|
(:file "tests")))
|
|
|
|
|
|
|
|
(defmethod operation-done-p ((op test-op)
|
|
|
|
(c (eql (find-system :coleslaw))))
|
|
|
|
(values nil))
|
2012-08-18 23:00:33 -04:00
|
|
|
|
|
|
|
(defpackage #:coleslaw-conf (:export #:*basedir*))
|
|
|
|
(defparameter coleslaw-conf:*basedir*
|
|
|
|
(make-pathname :name nil :type nil :defaults *load-truename*))
|