coleslaw/coleslaw-conf.asd
Javier Olaechea 9311c2244f Move coleslaw-conf to its own ASDF system
Ideally the package coleslaw would only have symbols that refer to
configuration variables. However to ease setting *BASEDIR* to the right
value using UIOP:SYMBOL-CALL we provide a setter, SET-BASEDIR.

- Split each ASDF system into its own file

- All system definitions are made in the ASDF-USER package, as
recommended by ASDF.

Fixes #110
2016-09-20 23:15:57 -05:00

12 lines
327 B
Common Lisp

(in-package #:asdf-user)
(defsystem #:coleslaw-conf
:name "coleslaw-conf"
:description "Configuration variable for Coleslaw, Flexible Lisp Blogware"
:version "0.9.7"
:license "BSD"
:author "Brit Butler <redline6561@gmail.com>"
:pathname "src/"
:depends-on ()
:serial t
:components ((:file "coleslaw-conf")))