r11657: 25 Apr 2007 Kevin Rosenberg <kevin@rosenberg.net>
[clsql.git] / clsql-sqlite3.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 SQLite3 backend
7 ;;;; Programmer:    Aurelio Bignoli
8 ;;;; Date Started:  Oct 2004
9 ;;;;
10 ;;;; $Id$
11 ;;;;
12 ;;;; This file, part of CLSQL, is Copyright (c) 2004 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-sqlite3-system (:use #:asdf #:cl))
20 (in-package #:clsql-sqlite3-system)
21
22 (defsystem clsql-sqlite3
23   :name "cl-sql-sqlite3"
24   :author "Aurelio Bignoli <aurelio@bignoli.it>"
25   :maintainer "Aurelio Bignoli"
26   :licence "Lessor Lisp General Public License"
27   :description "Common Lisp Sqlite3 Driver"
28   :long-description "cl-sql-sqlite3 package provides a database driver to SQLite Versione 3 database library."
29
30
31   :depends-on (clsql clsql-uffi)
32   :components
33   ((:module :db-sqlite3
34             :components
35             ((:file "sqlite3-package")
36              (:file "sqlite3-loader" :depends-on ("sqlite3-package"))
37              (:file  "sqlite3-api" :depends-on ("sqlite3-loader"))
38              (:file "sqlite3-sql" :depends-on ("sqlite3-api"))))))