901057ac4f93a1afa63fbe581013655890e278a2
[clsql.git] / clsql-postgresql-socket3.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 (protocol vs 3) backend
7 ;;;; Programmer:    Russ Tyndall
8 ;;;; Date Started:  Sept 2009
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 (defsystem clsql-postgresql-socket3
25   :name "cl-sql-postgresql-socket3"
26   :author "Russ Tyndall <russ@acceleration.net>"
27   :maintainer "Russ Tyndall <russ@acceleration.net>"
28   :licence "Lessor Lisp General Public License"
29   :description "Common Lisp SQL PostgreSQL Socket Driver"
30   :long-description "cl-sql-postgresql-socket package provides a database driver to the PostgreSQL database via a socket interface."
31
32   :depends-on (clsql md5 :cl-postgres #+sbcl sb-bsd-sockets)
33   :components
34   ((:module :db-postgresql-socket3
35             :serial T
36             :components ((:file "command-object")
37                          (:file "package")
38                          (:file "api")
39                          (:file "sql")))))