76825b8ba2717b3a743fd4fb44598fc6c9e4e0bf
[clsql.git] / clsql-postgresql-socket.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-postgresql-socket.asd
6 ;;;; Purpose:       ASDF file for CLSQL PostgresSQL socket 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-socket-system (:use #:asdf #:cl))
20 (in-package #:clsql-postgresql-socket-system)
21
22 ;;; System definition
23
24 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
25 (defsystem clsql-postgresql-socket
26   :name "cl-sql-postgresql-socket"
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 SQL PostgreSQL Socket Driver"
31   :long-description "cl-sql-postgresql-socket package provides a database driver to the PostgreSQL database via a socket interface."
32
33   :components
34   ((:module :db-postgresql-socket
35             :components
36             ((:file "postgresql-socket-package")
37              (:file "postgresql-socket-api"
38                     :depends-on ("postgresql-socket-package"))
39              (:file "postgresql-socket-sql"
40                     :depends-on ("postgresql-socket-api"))
41              (:file "postgresql-socket-usql"
42                     :depends-on ("postgresql-socket-sql")))))
43   :depends-on (:clsql-base :uffi :md5))