a990fe12e1cc026e32dbac00dc7157480f702450
[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   :depends-on (clsql-base uffi md5)
34   :components
35   ((:module :db-postgresql-socket
36             :components
37             ((:file "postgresql-socket-package")
38              (:file "postgresql-socket-api"
39                     :depends-on ("postgresql-socket-package"))
40              (:file "postgresql-socket-sql"
41                     :depends-on ("postgresql-socket-api"))))))