r3030: *** empty log message ***
[xmlutils.git] / debian / xmlutils.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          xmlutils.asd
6 ;;;; Purpose:       ASDF definition file for Xmlutils
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: xmlutils.asd,v 1.1 2002/10/15 13:43:24 kevin Exp $
11 ;;;;
12 ;;;; This file, part of cl-xmlutils, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; cl-xmlutils users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the GNU Lesser General Public License 
16 ;;;; (http://www.gnu.org/licenses/lgpl.html)
17 ;;;; *************************************************************************
18
19 (in-package :asdf)
20
21 (defsystem :xmlutils
22   :name "cl-xmlutils"
23   :author "Franz, Inc"
24   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
25   :licence "GNU Lesser General Public License"
26   :description "Franz's Test Harness Package"
27   :long-description "Xmlutils provides a library for parsing HTML and XML documents."
28   
29   :perform (load-op :after (op xmlutils)
30             (pushnew :xmlutils cl:*features*))
31   
32   :components
33   ((:file "xmlutils")))
34
35 (when (ignore-errors (find-class 'load-compiled-op))
36   (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :xmlutils))))
37     (pushnew :xmlutils cl:*features*)))
38