Final New Description patch!
[clinton/lisp-on-lines.git] / lisp-on-lines.asd
CommitLineData
579597e3 1;;; -*- lisp -*-
2
3(eval-when (:compile-toplevel :load-toplevel :execute)
38a016c7
DC
4 (unless (find-package :coop.tech.systems)
5 (defpackage :coop.tech.systems
4358148e 6 (:documentation "ASDF System package for Lisp On Lines")
579597e3 7 (:use :common-lisp :asdf))))
8
38a016c7 9(in-package :coop.tech.systems)
579597e3 10
579597e3 11(defsystem :lisp-on-lines
1d51a2ee 12 :license
4358148e 13 "Copyright (c) 2004-2007 Drew Crampsie
1d51a2ee 14
15Contains portions of ContextL:
16Copyright (c) 2005 - 2007 Pascal Costanza
17
18Permission is hereby granted, free of charge, to any person
19obtaining a copy of this software and associated documentation
20files (the \"Software\"), to deal in the Software without
21restriction, including without limitation the rights to use,
22copy, modify, merge, publish, distribute, sublicense, and/or
23sell copies of the Software, and to permit persons to whom the
24Software is furnished to do so, subject to the following
25conditions:
26
27The above copyright notice and this permission notice shall be
28included in all copies or substantial portions of the Software.
29
30THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND,
31EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
32OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
33NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
34HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
35WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
36FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
37OTHER DEALINGS IN THE SOFTWARE."
e9309ae7 38 :components ((:static-file "lisp-on-lines.asd")
e9309ae7 39 (:module :src
e7444a93 40 :components ((:file "packages")
1d51a2ee 41 (:file "utilities")
eeed4326 42 (:module :mao
43 :components ((:file "simple-plist-attribute")
44 (:file "attribute")
45 (:file "description-class")
46 (:file "description")
47 (:module :display
48 :components ((:file "display-attribute")
49 (:file "display-description")
50 (:file "define-description-compat"))
51 :serial t))
52 :serial t)
53 (:file "display")
4358148e 54 (:module :standard-descriptions
55 :components ((:file "t")
6de8d300 56 (:file "inline")
4358148e 57 (:file "edit")
58 (:file "symbol")
59 (:file "list")
c29b2d2d 60 (:file "null")
61 (:file "clos")
e8fd1a9a 62 (:file "validate")
c29b2d2d 63 )
80fcd57c 64
4358148e 65 :serial t))
1d51a2ee 66
4358148e 67 :serial t))
e9309ae7 68 :serial t
ec6dde1e 69 :depends-on (:contextl :arnesi :alexandria :parse-number :yaclml :trivial-garbage
e8fd1a9a 70 ))
4358148e 71
6f63d3a4 72
6bba9a21 73(defsystem :lisp-on-lines.test
74 :components ((:module :src
079b9084 75 :components ((:file "packages-test")
76 (:file "description-test")
77 (:file "attribute-test")
4358148e 78 (:file "display-test")
f4efa7ff 79 (:module :standard-descriptions
80 :components ((:file "edit-test"))
81 :serial t)
4358148e 82 (:module :ucw
83 :components ((:file "ucw-test"))
84 :serial t))
85 :serial t)
86 (:module :tests
87 :components ((:module :bug
88 :components ((:file "0"))))))
89 :serial t
90
91
92 :depends-on (:lisp-on-lines :lisp-on-lines-ucw :stefil))
93
6f63d3a4 94
e8fd1a9a 95