r4534: Auto commit for Debian build
[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.13 2003/04/19 03:50:12 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 <kevin@rosenberg.net>"
24   :version "2.4.0"
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   :depends-on (:lml-base)
31   
32   :components
33   ((:file "read-macro"))
34    )
35
36
37