r3797: Auto commit for Debian build
[lml.git] / lml.asd
diff --git a/lml.asd b/lml.asd
index 3922ecd4c402626aa8a8f9466af03f85ae5bdc0e..6efe3393b29ca03162ed6ac0269fd3c3ccac766c 100644 (file)
--- a/lml.asd
+++ b/lml.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Aug 2002
 ;;;;
-;;;; $Id: lml.asd,v 1.5 2002/09/16 07:06:54 kevin Exp $
+;;;; $Id: lml.asd,v 1.12 2002/12/29 09:10:41 kevin Exp $
 ;;;;
 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 (in-package :asdf)
 
 (defsystem :lml
-;    :pathname "cl-library:lml;"
-    :pathname "/usr/share/common-lisp/source/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 <kmr@debian.org>"
+  :version "1.0.7"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :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 "base" :depends-on ("files"))
+   (:file "stdsite" :depends-on ("base"))
+   (:file "downloads" :depends-on ("base"))
+   ))
 
-(defmethod source-file-type  ((c cl-source-file) (s (eql (find-system 'lml)))) 
-   "cl")