1 (in-package #:common-lisp-user)
3 (defpackage #:lift-documentation-system
4 (:use #:common-lisp #:asdf))
5 (in-package #:lift-documentation-system)
7 ;; just ignore for now... sigh.
8 (defsystem lift-documentation
9 :author "Gary King <gwking@metabang.com>"
10 :maintainer "Gary Warren King <gwking@metabang.com>"
11 :licence "MIT Style License"
12 :description "Documentation for LIFT"
17 :components ((:file "package")
19 :depends-on ("package"))))
24 :pathname "website/source/"
26 ((:docudown-source "index.md")
27 (:docudown-source "user-guide.md"))))
28 :depends-on (:lift #+(or) :docudown))