r9335: Automated commit for Debian build of clsql upstream-version-2.10.16
[clsql.git] / clsql-classic.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-classic.asd
6 ;;;; Purpose:       System definition for CLSQL-CLASSIC
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Feb 2002
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg
13 ;;;;
14 ;;;; CLSQL users are granted the rights to distribute and use this software
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
17 ;;;; *************************************************************************
18
19 (defpackage #:clsql-classic-system (:use #:asdf #:cl))
20 (in-package #:clsql-classic-system)
21
22 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
23 (defsystem clsql-classic
24   :name "clsql-classic"
25   :author "Kevin Rosenberg <kevin@rosenberg.net>"
26   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
27   :version "2.1.x"
28   :licence "Lessor Lisp General Public License"
29   :description "Common Lisp SQL Interface Library"
30   :long-description "cl-sql package provides the high-level interface for the CLSQL system."
31   
32   :depends-on (clsql-base)
33   :components
34   ((:module :classic
35             :components
36             ((:file "package")
37              (:file "sql" :depends-on ("package"))
38              (:file "functional" :depends-on ("sql"))))))
39
40 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
41 (defmethod perform ((o test-op) (c (eql (find-system 'clsql-classic))))
42   (warn "Testing is provided by the CLSQL-TESTS system"))