forked from fukamachi/integral
-
Notifications
You must be signed in to change notification settings - Fork 0
/
integral.asd
63 lines (60 loc) · 2.32 KB
/
integral.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
#|
This file is a part of integral project.
Copyright (c) 2014 Eitaro Fukamachi (e.arrows@gmail.com)
|#
#|
Author: Eitaro Fukamachi (e.arrows@gmail.com)
|#
(in-package :cl-user)
(defpackage integral-asd
(:use :cl :asdf))
(in-package :integral-asd)
(defsystem integral
:version "0.0.1"
:author "Eitaro Fukamachi"
:license "BSD 3-Clause"
:depends-on (:cl-syntax-annot
:sxql
:dbi
:cl-ppcre
:closer-mop
:clos-fixtures
:split-sequence
:group-by
:iterate
:alexandria
:trivial-types)
:components ((:module "src"
:components
((:file "integral" :depends-on ("connection" "table" "database" "migration" "type" "error" "variable"))
(:file "table" :depends-on ("connection" "column" "database" "variable" "util"))
(:file "column" :depends-on ("connection" "type"))
(:file "connection" :depends-on ("connection-drivers" "error"))
(:module "connection-drivers"
:pathname "connection"
:depends-on ("type" "util")
:components
((:file "mysql")
(:file "postgres")
(:file "sqlite3")))
(:file "database" :depends-on ("connection"))
(:file "migration" :depends-on ("connection" "table" "column" "util"))
(:file "fixture" :depends-on ("integral" "table"))
(:file "type" :depends-on ("util"))
(:file "error")
(:file "variable")
(:file "util"))))
:description "Object Relational Mapper for Common Lisp"
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(or *load-pathname* *compile-file-pathname*))
:if-does-not-exist nil
:direction :input)
(when stream
(let ((seq (make-array (file-length stream)
:element-type 'character
:fill-pointer t)))
(setf (fill-pointer seq) (read-sequence seq stream))
seq)))
:in-order-to ((test-op (test-op integral-test))))