Merge branch 'master' of git://git.b9.com/clsql into fluid-pools
[clsql/s11.git] / clsql-fluid.asd
blobb4da499a17278e66f8992aca938c46bd8a1c6837
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:     clsql-fluid.asd
6 ;;;; Purpose:  System definition for CLSQL-FLUID
7 ;;;; Authors:  Stephen Compall
8 ;;;; Created:  December 2008
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
17 (in-package #:cl-user)
18 (defpackage #:clsql-fluid-system (:use #:asdf #:cl))
19 (in-package #:clsql-fluid-system)
21 (defsystem clsql-fluid
22     :name "CLSQL-Fluid"
23     :author "Stephen Compall <scompall@nocandysw.com>"
24     :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
25     :licence "Lessor Lisp General Public License"
26     :description "Common Lisp SQL Fluid Connection Pools"
27     :long-description "A full database type based on fluids, or
28 per-thread connections."
29     :depends-on (clsql closer-mop bordeaux-threads)
30     :components
31     ((:module sql
32               :components
33               ((:module base
34                         :pathname ""
35                         :components
36                         ((:file "fluid")))))))