r3737: *** empty log message ***
[ptester.git] / tester.asd
diff --git a/tester.asd b/tester.asd
new file mode 100644 (file)
index 0000000..6bf07e9
--- /dev/null
@@ -0,0 +1,40 @@
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          tester.asd
+;;;; Purpose:       ASDF definition file for Tester
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Sep 2002
+;;;;
+;;;; $Id: tester.asd,v 1.1 2003/01/10 05:17:27 kevin Exp $
+;;;;
+;;;; This file, part of cl-tester, is Copyright (c) 2002 by Kevin M. Rosenberg
+;;;;
+;;;; cl-tester 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 'tester)
+
+(defsystem :tester
+  :name "cl-tester"
+  :author "Kevin Layer, Franz, Inc"
+  :version "2.2.12.2.6.1"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "GNU Lesser General Public License"
+  :description "Franz's Test Harness Package"
+  :long-description "Tester provides an framework for creating automated testing progams."
+  
+  :perform (load-op :after (op tester)
+           (pushnew :tester cl:*features*))
+  
+  :components
+  (
+   #-allegro (:file "tester")
+            ))
+
+