r4544: Auto commit for Debian build
[xptest.git] / xptest.asd
index d4b0699c4d1d7fa26d9e359c136f7f84f880deb7..147af2f19c3fb85943e244abc41fee04b0b282d1 100644 (file)
@@ -1,7 +1,29 @@
-;;; -*- Mode: Lisp -*-
+;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
+;;;; *************************************************************************
+;;;; FILE IDENTIFICATION
+;;;;
+;;;; Name:          xptest.asd
+;;;; Purpose:       ASDF definition file for Xptest
+;;;; Programmer:    Kevin M. Rosenberg
+;;;; Date Started:  Sep 2002
+;;;;
+;;;; $Id: xptest.asd,v 1.7 2003/04/19 16:23:56 kevin Exp $
+;;;; *************************************************************************
 
 (defpackage #:xptest-system (:use #:asdf #:cl))
 (in-package #:xptest-system)
 
 (defsystem :xptest
-    :components ((:file "xptestsuite")))
+  :name "cl-xptest"
+  :author "Craig Brozensky"
+  :version "2003.04.21"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :licence "Public domain"
+  :description "Extreme Programming Testing Suite"
+  :long-description "The XPTEST package is toolkit for building test suites, very much inspired by the test frameworks that the Extreme Programming crew made available for Smalltalk an other languages."
+  
+  :perform (load-op :after (op xptest)
+           (pushnew :xptest cl:*features*))
+  
+  :components
+  ((:file "xptestsuite")))