Merge pull request #6 from dkochmanski/master
[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 ;;;; This file, part of CLSQL, is Copyright (c) 2002-2010 by Kevin M. Rosenberg
11 ;;;;
12 ;;;; CLSQL users are granted the rights to distribute and use this software
13 ;;;; as governed by the terms of the Lisp Lesser GNU Public License
14 ;;;; (http://opensource.franz.com/preamble.html), also known as the LLGPL.
15 ;;;; *************************************************************************
16
17 (in-package cl-user)
18
19 (defpackage clsql-uffi-system (:use #:asdf #:cl))
20 (in-package clsql-uffi-system)
21
22 (defsystem clsql-uffi
23   :name "cl-sql-base"
24   :author "Kevin M. Rosenberg <kmr@debian.org>"
25   :maintainer "Kevin M. Rosenberg <kmr@debian.org>"
26   :licence "Lessor Lisp General Public License"
27   :description "Common UFFI Helper functions for Common Lisp SQL Interface Library"
28   :long-description "cl-sql-uffi package provides common helper functions using the UFFI for the CLSQL package."
29
30   :depends-on (clsql #-:clsql-cffi (:version uffi "2.0")
31                      #+:clsql-cffi cffi-uffi-compat)
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-package"))))))