r3030: *** empty log message ***
[xmlutils.git] / debian / xmlutils.asd
diff --git a/debian/xmlutils.asd b/debian/xmlutils.asd
new file mode 100644 (file)
index 0000000..9338bd0
--- /dev/null
@@ -0,0 +1,38 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          xmlutils.asd
+;;;; Purpose:       ASDF definition file for Xmlutils
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Sep 2002
+;;;;
+;;;; $Id: xmlutils.asd,v 1.1 2002/10/15 13:43:24 kevin Exp $
+;;;;
+;;;; This file, part of cl-xmlutils, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; cl-xmlutils users are granted the rights to distribute and use this software
+;;;; as governed by the terms of the GNU Lesser General Public License 
+;;;; (http://www.gnu.org/licenses/lgpl.html)
+;;;; *************************************************************************
+
+(in-package :asdf)
+
+(defsystem :xmlutils
+  :name "cl-xmlutils"
+  :author "Franz, Inc"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "GNU Lesser General Public License"
+  :description "Franz's Test Harness Package"
+  :long-description "Xmlutils provides a library for parsing HTML and XML documents."
+  
+  :perform (load-op :after (op xmlutils)
+           (pushnew :xmlutils cl:*features*))
+  
+  :components
+  ((:file "xmlutils")))
+
+(when (ignore-errors (find-class 'load-compiled-op))
+  (defmethod perform :after ((op load-compiled-op) (c (eql (find-system :xmlutils))))
+    (pushnew :xmlutils cl:*features*)))
+