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