c3840fb47af031c4e3998bd27a23ea4a6d96b5c4
[clsql.git] / clsql-sqlite.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-postgresql.asd
6 ;;;; Purpose:       ASDF file for CLSQL SQLite backend
7 ;;;; Programmer:    Aurelio Bignoli
8 ;;;; Date Started:  Aug 2003
9 ;;;;
10 ;;;; $Id: clsql-sqlite.asd,v 1.5 2004/03/09 20:55:11 aurelio Exp $
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2003 by Aurelio Bignoli
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 (defpackage #:clsql-sqlite-system (:use #:asdf #:cl))
19 (in-package #:clsql-sqlite-system)
20
21 (defsystem clsql-sqlite
22   :name "cl-sql-sqlite"
23   :author "Aurelio Bignoli <aurelio@bignoli.it>"
24   :maintainer "Aurelio Bignoli"
25   :licence "Lessor Lisp General Public License"
26   :description "Common Lisp SQLite Driver"
27   :long-description "cl-sql-sqlite package provides a database driver to SQLite database library."
28
29   :components
30     ((:module :db-sqlite
31               :components
32               ((:file "sqlite-package")
33                (:file "sqlite-loader" :depends-on ("sqlite-package"))
34                (:file #+clisp "sqlite-api-clisp"
35                       #-clisp "sqlite-api-uffi"
36                       :depends-on ("sqlite-loader"))
37                (:file "sqlite-sql" :depends-on (#+clisp "sqlite-api-clisp"
38                                                 #-clisp "sqlite-api-uffi"))
39                (:file "sqlite-usql" :depends-on ("sqlite-sql")))))
40     :depends-on (#-clisp :uffi
41                          :clsql-base))