s-xml.asd
 1 ;;;; -*- Mode: LISP -*-
2 ;;;;
3 ;;;; $Id: s-xml.asd,v 1.2 2005/12/14 21:49:04 scaekenberghe Exp $
4 ;;;;
5 ;;;; The S-XML ASDF system definition
6 ;;;;
7 ;;;; Copyright (C) 2002, 2004 Sven Van Caekenberghe, Beta Nine BVBA.
8 ;;;;
9 ;;;; You are granted the rights to distribute and use this software
10 ;;;; as governed by the terms of the Lisp Lesser General Public License
11 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
12
13 (in-package :asdf)
14
15 (defsystem :s-xml
16 :name "S-XML"
17 :author "Sven Van Caekenberghe <svc@mac.com>"
18 :version "3"
19 :maintainer "Sven Van Caekenberghe <svc@mac.com>, Brian Mastenbrook <>, Rudi Schlatte <>"
20 :licence "Lisp Lesser General Public License (LLGPL)"
21 :description "Simple Common Lisp XML Parser"
22 :long-description "S-XML is a Common Lisp implementation of a simple XML parser, with a SAX-like and DOM interface"
23
24 :components
25 ((:module
26 :src
27 :components ((:file "package")
28 (:file "xml" :depends-on ("package"))
29 (:file "dom" :depends-on ("package" "xml"))
30 (:file "lxml-dom" :depends-on ("dom"))
31 (:file "sxml-dom" :depends-on ("dom"))
32 (:file "xml-struct-dom" :depends-on ("dom"))))))
33
34 ;;;; eof