r10305: Automated commit for Debian build of lml2 upstream-version-1.5.3
[lml2.git] / lml2.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          lml2.asd
6 ;;;; Purpose:       ASDF definition file for Lisp Markup Language Version 2
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of LML2, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; LML2 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 #:cl-user)
20 (defpackage #:lml2-system (:use #:asdf #:cl))
21 (in-package #:lml2-system)
22
23 (defsystem lml2
24   :name "lml2"
25   :author "Kevin M. Rosenberg <kevin@rosenberg.net>"
26   :version "1.0"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "GNU General Public License"
29   :description "Lisp Markup Language"
30   :long-description "LML2 provides creation of XHTML for Lisp programs."
31
32   :depends-on (kmrcl)
33   
34   :components
35   ((:file "package")
36    (:file "data" :depends-on ("package"))
37    (:file "htmlgen" :depends-on ("data"))
38    (:file "utils" :depends-on ("package"))
39    (:file "files" :depends-on ("utils" "htmlgen"))
40    (:file "base" :depends-on ("files"))
41    #+ignore (:file "read-macro" :depends-on ("base"))
42    (:file "stdsite" :depends-on ("base"))
43    (:file "downloads" :depends-on ("base"))
44    (:file "apache-dir" :depends-on ("base"))
45    ))
46
47 (defmethod perform ((o test-op) (c (eql (find-system 'lml2))))
48   (operate 'load-op 'lml2-tests)
49   (operate 'test-op 'lml2-tests))