r5342: *** empty log message ***
[ptester.git] / ptester.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          ptester.asd
6 ;;;; Purpose:       ASDF definition file for ptester
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Sep 2002
9 ;;;;
10 ;;;; $Id: ptester.asd,v 1.1 2003/07/20 18:10:22 kevin Exp $
11 ;;;;
12 ;;;; *************************************************************************
13
14 (defpackage #:ptester-system (:use #:asdf #:cl))
15 (in-package #:ptester-system)
16
17
18 (defsystem ptester
19   :name "ptester"
20   :author "Kevin Layer, Franz, Inc / Kevin Rosenberg"
21   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
22   :licence "LLGPL"
23   :description "Portable test harness package"
24   :long-description "ptester is a portable testing framework based on Franz's tester module"
25   
26   :components
27   ((:file "src")))
28