r8850: remove usql files
[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 #+(and allegro macosx) (push "so" excl::*load-foreign-types*)
23
24 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
25 (defsystem clsql-postgresql
26   :name "cl-sql-postgresql"
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 PostgreSQL API Driver"
31   :long-description "cl-sql-postgresql package provides a the database driver for the PostgreSQL API."
32
33   :depends-on (uffi clsql-base clsql-uffi)
34   :components
35   ((:module :db-postgresql
36             :components
37             ((:file "postgresql-package")
38              (:file "postgresql-loader" :depends-on ("postgresql-package"))
39              (:file "postgresql-api" :depends-on ("postgresql-loader"))
40              (:file "postgresql-sql" :depends-on ("postgresql-api"))))))