2016-09-20 17:14:52 -05:00
|
|
|
(in-package #:asdf-user)
|
|
|
|
|
2012-08-14 23:56:25 -04:00
|
|
|
(defsystem #:coleslaw
|
2013-03-06 13:05:57 -05:00
|
|
|
:name "coleslaw"
|
2011-04-16 15:45:37 -04:00
|
|
|
:description "Flexible Lisp Blogware"
|
2014-11-25 22:39:54 -05:00
|
|
|
:version "0.9.7"
|
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/"
|
2016-09-20 17:14:52 -05:00
|
|
|
:depends-on (:coleslaw-conf
|
|
|
|
:closure-template
|
2012-12-11 10:10:00 -05:00
|
|
|
:3bmd
|
2012-11-25 20:46:22 +00:00
|
|
|
:3bmd-ext-code-blocks
|
2012-12-11 10:10:00 -05:00
|
|
|
:alexandria
|
|
|
|
:local-time
|
|
|
|
:inferior-shell
|
|
|
|
:cl-fad
|
2013-01-01 17:31:33 -05:00
|
|
|
:cl-ppcre
|
2014-12-06 19:51:06 +01:00
|
|
|
:closer-mop
|
2014-12-06 22:00:07 -05:00
|
|
|
:cl-unicode)
|
2012-08-14 23:56:25 -04:00
|
|
|
:serial t
|
|
|
|
:components ((:file "packages")
|
2012-08-22 00:16:41 -04:00
|
|
|
(:file "util")
|
2012-08-29 13:23:35 -04:00
|
|
|
(:file "config")
|
2012-08-22 00:16:41 -04:00
|
|
|
(:file "themes")
|
2014-04-15 11:28:41 -04:00
|
|
|
(:file "documents")
|
2013-01-01 17:31:33 -05:00
|
|
|
(:file "content")
|
2012-08-14 23:56:25 -04:00
|
|
|
(:file "posts")
|
2014-04-07 20:56:10 -04:00
|
|
|
(:file "indexes")
|
2014-05-01 17:16:50 -04:00
|
|
|
(:file "feeds")
|
2012-09-12 17:25:36 -04:00
|
|
|
(:file "coleslaw"))
|
2015-09-02 13:41:39 -05:00
|
|
|
:in-order-to ((test-op (test-op coleslaw-test))))
|
2012-08-14 23:56:25 -04:00
|
|
|
|
2016-09-20 17:14:52 -05:00
|
|
|
(defmethod perform :before ((op load-op)
|
|
|
|
(system (eql (find-system :coleslaw))))
|
|
|
|
(uiop:symbol-call "COLESLAW-CONF" 'set-basedir #.*load-truename*))
|