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