r4863: Auto commit for Debian build
[clsql.git] / clsql.asd
index 162520037dcc8fa2dff25e74a842302304dc96eb..03faf1a084564e889ac56ef1e684ed91b898e2ea 100644 (file)
--- a/clsql.asd
+++ b/clsql.asd
@@ -7,7 +7,7 @@
 ;;;; Programmer:    Kevin M. Rosenberg
 ;;;; Date Started:  Feb 2002
 ;;;;
-;;;; $Id: clsql.asd,v 1.7 2002/09/17 17:16:43 kevin Exp $
+;;;; $Id: clsql.asd,v 1.18 2003/05/07 02:45:08 kevin Exp $
 ;;;;
 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
 ;;;;
 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
 ;;;; *************************************************************************
 
-(in-package :asdf)
+(defpackage #:clsql-system (:use #:asdf #:cl))
+(in-package #:clsql-system)
 
+#+(or allegro lispworks cmu sbcl openmcl mcl scl)
 (defsystem clsql
-  :perform (load-op :after (op clsql)
-                   (pushnew :clsql cl:*features*))
+  :name "clsql"
+  :author "Kevin Rosenberg <kevin@rosenberg.net>"
+  :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
+  :version "1.5.x"
+  :licence "Lessor Lisp General Public License"
+  :description "Common Lisp SQL Interface Library"
+  :long-description "cl-sql package provides the high-level interface for the CLSQL system."
+  
   :components
   ((:module :sql
            :components
@@ -34,6 +42,7 @@
   :depends-on (:clsql-base)
   )
 
-(defmethod source-file-type  ((c cl-source-file)
-                             (s (eql (find-system 'clsql)))) 
-   "cl")
+#+(or allegro lispworks cmu sbcl openmcl mcl scl)
+(defmethod perform ((o test-op) (c (eql (find-system :clsql))))
+  (oos 'load-op 'clsql-tests)
+  (oos 'test-op 'clsql-tests))