r7061: initial property settings
[clsql.git] / clsql-uffi.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-uffi.asd
6 ;;;; Purpose:       ASDF definition file for CLSQL UFFI Helper package
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
20 (defpackage #:clsql-uffi-system (:use #:asdf #:cl))
21 (in-package #:clsql-uffi-system)
22
23
24 #+(or allegro lispworks cmu sbcl openmcl mcl scl)
25 (defsystem clsql-uffi
26   :name "cl-sql-base"
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 UFFI Helper functions for Common Lisp SQL Interface Library"
31   :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package."
32
33   :components
34   ((:module :uffi
35             :components
36             ((:file "clsql-uffi-package")
37              (:file "clsql-uffi-loader" :depends-on ("clsql-uffi-package"))
38              (:file "clsql-uffi" :depends-on ("clsql-uffi-loader")))))
39   :depends-on (:uffi :clsql-base))