r4863: Auto commit for Debian build
[clsql.git] / clsql-postgresql-socket.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-\r
2 ;;;; *************************************************************************\r
3 ;;;; FILE IDENTIFICATION\r
4 ;;;;\r
5 ;;;; Name:          clsql-postgresql-socket.asd\r
6 ;;;; Purpose:       ASDF file for CLSQL PostgresSQL socket backend\r
7 ;;;; Programmer:    Kevin M. Rosenberg\r
8 ;;;; Date Started:  Aug 2002\r
9 ;;;;\r
10 ;;;; $Id: clsql-postgresql-socket.asd,v 1.16 2003/05/07 02:45:08 kevin Exp $\r
11 ;;;;\r
12 ;;;; This file, part of CLSQL, is Copyright (c) 2002 by Kevin M. Rosenberg\r
13 ;;;;\r
14 ;;;; CLSQL users are granted the rights to distribute and use this software\r
15 ;;;; as governed by the terms of the Lisp Lesser GNU Public License\r
16 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.\r
17 ;;;; *************************************************************************\r
18 \r
19 (defpackage #:clsql-postgresql-socket-system (:use #:asdf #:cl))\r
20 (in-package #:clsql-postgresql-socket-system)\r
21 \r
22 ;;; System definition\r
23 \r
24 #+(or allegro lispworks cmu sbcl openmcl mcl scl)\r
25 (defsystem clsql-postgresql-socket\r
26   :name "cl-sql-postgresql-socket"\r
27   :author "Kevin M. Rosenberg <kmr@debian.org>"\r
28   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"\r
29   :licence "Lessor Lisp General Public License"\r
30   :description "Common Lisp SQL PostgreSQL Socket Driver"\r
31   :long-description "cl-sql-postgresql-socket package provides a database driver to the PostgreSQL database via a socket interface."\r
32 \r
33   :components\r
34   ((:module :db-postgresql-socket\r
35             :components\r
36             ((:file "postgresql-socket-package")\r
37              (:file "postgresql-socket-api"\r
38                     :depends-on ("postgresql-socket-package"))\r
39              (:file "postgresql-socket-sql"\r
40                     :depends-on ("postgresql-socket-api")))))\r
41   :depends-on (:clsql-base :uffi :md5))\r