r9531: * db-postgresql/postgresl-sql.lisp: Avoid computing
[clsql.git] / clsql-sqlite.asd
1 ;;;; -*- Mode: LISP; Syntax: ANSI-Common-Lisp; Base: 10 -*-
2 ;;;; *************************************************************************
3 ;;;; FILE IDENTIFICATION
4 ;;;;
5 ;;;; Name:          clsql-sqlite.asd
6 ;;;; Purpose:       ASDF file for CLSQL SQLite backend
7 ;;;; Programmer:    Aurelio Bignoli
8 ;;;; Date Started:  Aug 2003
9 ;;;;
10 ;;;; $Id$
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
19 (defpackage #:clsql-sqlite-system (:use #:asdf #:cl))
20 (in-package #:clsql-sqlite-system)
21
22 (defsystem clsql-sqlite
23   :name "cl-sql-sqlite"
24   :author "Aurelio Bignoli <aurelio@bignoli.it>"
25   :maintainer "Aurelio Bignoli"
26   :licence "Lessor Lisp General Public License"
27   :description "Common Lisp SQLite Driver"
28   :long-description "cl-sql-sqlite package provides a database driver to SQLite database library."
29
30
31   :depends-on (clsql clsql-uffi)
32   :components
33   ((:module :db-sqlite
34             :components
35             ((:file "sqlite-package")
36              (:file "sqlite-loader" :depends-on ("sqlite-package"))
37              (:file  "sqlite-api" :depends-on ("sqlite-loader"))
38              (:file "sqlite-sql" :depends-on ("sqlite-api"))))))