1234567891011121314151617 |
- ;;;; collect.asd
- ;;;;
- ;;;; Copyright (c) 2015 Samuel W. Flint <swflint@flintfam.org>
- (asdf:defsystem #:collect
- :description "Describe collect here"
- :author "Samuel W. Flint <swflint@flintfam.org>"
- :license "GNU GPLv3 or later"
- :depends-on (#:restas
- #:html-template
- #:cl-who
- #:lass
- #:parenscript
- #:sqlite)
- :serial t
- :components ((:file "package")
- (:file "collect")))
|