X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=lml.asd;h=ed9244fb9c5d7592298f323ac77d62e446567c36;hb=e741d288978f9a65554235ecb3115db8eef60b54;hp=981c61d15a8030caef46446311f062b27743d239;hpb=00049fd6b7a9dcf2b1303e65439d94d9269977d3;p=lml.git diff --git a/lml.asd b/lml.asd index 981c61d..ed9244f 100644 --- a/lml.asd +++ b/lml.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Aug 2002 ;;;; -;;;; $Id: lml.asd,v 1.2 2002/09/16 01:41:16 kevin Exp $ +;;;; $Id: lml.asd,v 1.10 2002/09/30 10:26:43 kevin Exp $ ;;;; ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -19,15 +19,26 @@ (in-package :asdf) (defsystem :lml - :pathname "CL-LIBRARY:lml;" - :components - ((:file "package") - (:file "utils" :depends-on ("package")) - (:file "files" :depends-on ("utils")) - (:file "lml" :depends-on ("files")) - (:file "stdsite" :depends-on ("lml")) - (:file "downloads" :depends-on ("lml")) - )) + :name "cl-lml" + :author "Kevin M. Rosenberg " + :version "1.0.7" + :maintainer "Kevin M. Rosenberg " + :licence "GNU General Public License" + :description "Lisp Markup Language" + :long-description "LML provides creation of XHTML for Lisp programs." + + :perform (load-op :after (op lml) + (pushnew :lml cl:*features*)) + + :components + ((:file "package") + (:file "utils" :depends-on ("package")) + (:file "files" :depends-on ("utils")) + (:file "lml" :depends-on ("files")) + (:file "stdsite" :depends-on ("lml")) + (:file "downloads" :depends-on ("lml")) + )) -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :lml)))) - "cl") +(when (ignore-errors (find-class 'load-compiled-op)) + (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :lml)))) + (pushnew :lml cl:*features*)))