X-Git-Url: http://git.kpe.io/?p=clsql.git;a=blobdiff_plain;f=clsql.asd;h=7ad36fa1f664be515973cb1314ea44bd6bd95732;hp=2890db90e0f67c83b3d0196f440408fca124d1d9;hb=bada52b7a8fd2cc484dee33cccd64ca09a52ec3d;hpb=2434b58ef00a7f6c5915c86b25a891c4adda79e4 diff --git a/clsql.asd b/clsql.asd index 2890db9..7ad36fa 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.8 2002/09/18 07:50:01 kevin Exp $ +;;;; $Id$ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -16,11 +16,19 @@ ;;;; (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 " + :maintainer "Kevin M. Rosenberg " + :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) -e (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))