X-Git-Url: http://git.kpe.io/?p=xmlutils.git;a=blobdiff_plain;f=debian%2Fxmlutils.asd;fp=debian%2Fxmlutils.asd;h=0000000000000000000000000000000000000000;hp=b09bdd3246abd202548e5c03705b4ee73bf35eb4;hb=1e8aa1df433841c85c5a0b44fbd92964672e18b5;hpb=2d40f4169cc89aaecf1a762cae1e2d7cd55587ab diff --git a/debian/xmlutils.asd b/debian/xmlutils.asd deleted file mode 100644 index b09bdd3..0000000 --- a/debian/xmlutils.asd +++ /dev/null @@ -1,49 +0,0 @@ -;;;; -*- 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.4 2002/11/08 16:51:40 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) - -#-allegro (require :acl-compat) - -#+lispworks -(eval-when (:compile-toplevel :load-toplevel :execute) - (defvar system::*stack-overflow-behavior* :warn) - (setq system::*stack-overflow-behavior* :warn)) - -(defsystem :xmlutils - :name "cl-xmlutils" - :author "Franz, Inc" - :maintainer "Kevin M. Rosenberg " - :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 "phtml") - (:file "pxml0") - (:file "pxml1" :depends-on ("pxml0")) - (:file "pxml2" :depends-on ("pxml1")) - (:file "pxml3" :depends-on ("pxml2")) - )) - -(defmethod source-file-type ((c cl-source-file) (s (eql (find-system :xmlutils)))) - "cl") -