r3691: *** empty log message ***
[lml.git] / lml.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          lml.asd
6 ;;;; Purpose:       ASDF definition file for Lisp Markup Language
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id: lml.asd,v 1.12 2002/12/29 09:10:41 kevin Exp $
11 ;;;;
12 ;;;; This file, part of LML, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU General Public License v2
16 ;;;; (http://www.gnu.org/licenses/gpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :lml
22   :name "cl-lml"
23   :author "Kevin M. Rosenberg <kmr@debian.org>"
24   :version "1.0.7"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "GNU General Public License"
27   :description "Lisp Markup Language"
28   :long-description "LML provides creation of XHTML for Lisp programs."
29   
30   :perform (load-op :after (op lml)
31             (pushnew :lml cl:*features*))
32   
33   :components
34   ((:file "package")
35    (:file "utils" :depends-on ("package"))
36    (:file "files" :depends-on ("utils"))
37    (:file "base" :depends-on ("files"))
38    (:file "stdsite" :depends-on ("base"))
39    (:file "downloads" :depends-on ("base"))
40    ))
41