X-Git-Url: http://git.kpe.io/?a=blobdiff_plain;f=clsql.asd;h=0db72bf722fd7516e4c99f80c32969f80e9c69ba;hb=c26576fadaa8c5e5c5a2406de108529c308bd9b4;hp=eafc5a8bd292110ac4230d12155dcb6d72d0df8f;hpb=a4cc7c882966b6ffa58d78fd4a93f0cf6b73426b;p=clsql.git diff --git a/clsql.asd b/clsql.asd index eafc5a8..0db72bf 100644 --- a/clsql.asd +++ b/clsql.asd @@ -7,7 +7,7 @@ ;;;; Programmer: Kevin M. Rosenberg ;;;; Date Started: Feb 2002 ;;;; -;;;; $Id: clsql.asd,v 1.9 2002/09/19 21:27:54 kevin Exp $ +;;;; $Id: clsql.asd,v 1.16 2002/11/08 16:51:50 kevin Exp $ ;;;; ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg ;;;; @@ -18,7 +18,16 @@ (in-package :asdf) -(defsystem clsql +#+(or allegro lispworks cmu sbcl openmcl mcl scl) +(defsystem :clsql + :name "cl-sql" + :author "Kevin M. Rosenberg " + :version "0.9.2" + :maintainer "Kevin M. Rosenberg " + :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." + :perform (load-op :after (op clsql) (pushnew :clsql cl:*features*)) :components @@ -33,7 +42,3 @@ (:file "usql" :depends-on ("sql"))))) :depends-on (:clsql-base) ) - -(defmethod source-file-type ((c cl-source-file) - (s (eql (find-system :clsql)))) - "cl")