r7061: initial property settings
[clsql.git] / clsql-mysql.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-mysql.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL MySQL backend
7 ;;;; Programmer:    Kevin M. Rosenberg
8 ;;;; Date Started:  Aug 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-mysql-system (:use #:asdf #:cl))
20 (in-package #:clsql-mysql-system)
21
22 ;;; System definition
23
24 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
25 (defsystem :clsql-mysql
26   :name "cl-sql-mysql"
27   :author "Kevin M. Rosenberg <kmr@debian.org>"
28   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
29   :licence "Lessor Lisp General Public License"
30   :description "Common Lisp SQL MySQL Driver"
31   :long-description "cl-sql-mysql package provides a database driver to the MySQL database system."
32
33   :components
34   ((:module :db-mysql
35             :components
36             ((:file "mysql-package")
37              (:file "mysql-loader" :depends-on ("mysql-package"))
38              (:file "mysql-api" :depends-on ("mysql-loader"))
39              (:file "mysql-sql" :depends-on ("mysql-api"))
40              (:file "mysql-usql" :depends-on ("mysql-sql")))))
41   :depends-on (:uffi :clsql-base :clsql-uffi))