r11657: 25 Apr 2007 Kevin Rosenberg <kevin@rosenberg.net>
[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 (defsystem clsql-postgresql
25   :name "cl-sql-postgresql"
26   :author "Kevin M. Rosenberg <kmr@debian.org>"
27   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
28   :licence "Lessor Lisp General Public License"
29   :description "Common Lisp PostgreSQL API Driver"
30   :long-description "cl-sql-postgresql package provides a the database driver for the PostgreSQL API."
31
32   :depends-on (uffi clsql clsql-uffi)
33   :components
34   ((:module :db-postgresql
35             :components
36             ((:file "postgresql-package")
37              (:file "postgresql-loader" :depends-on ("postgresql-package"))
38              (:file "postgresql-api" :depends-on ("postgresql-loader"))
39              (:file "postgresql-sql" :depends-on ("postgresql-api"))))))