-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
baphomet.asd
60 lines (55 loc) · 2.17 KB
/
baphomet.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
;; Copyright (c) 2022, "the Phoeron" Colin J.E. Lupton <[email protected]>
;; Released under the MIT License. See baphomet/LICENSE for more information.
(in-package :cl-user)
(defpackage baphomet/asdf
(:nicknames baphomet/sys)
(:use cl asdf uiop))
(in-package :baphomet/asdf)
(defsystem baphomet
:name "BAPHOMET"
:description "Extensible, declarative, type-dispatched definition forms with consistent syntax."
:author '("\"the Phoeron\" Colin J.E. Lupton <[email protected]>"
"Volkan Yazici <[email protected]>")
:homepage "https://thephoeron.github.io/baphomet/"
:source-control (:git "https://github.com/thephoeron/baphomet")
:bug-tracker "https://github.com/thephoeron/baphomet/issues"
:mailto "[email protected]"
:version (:read-file-form "VERSION")
:licence "MIT"
:depends-on (closer-mop
serapeum
alexandria
trivial-types)
:serial t
:components ((:file "packages")
(:module type-packages
:serial t
:components ((:file "generic-interface")))
(:file "types")
(:file "canonical-forms")
(:file "parsers")
(:file "definer")
(:file "options")
(:module definition-forms
:serial t
:components ((:file "bindings")
(:file "functions")
(:file "macros")
(:file "object-system"))))
:perform (load-op :after (op c)
(provide :baphomet)
(pushnew :baphomet *features*)))
(defsystem baphomet/test
:description "Test suite for BAPHOMET."
:author "\"the Phoeron\" Colin J.E. Lupton <[email protected]>"
:homepage "https://thephoeron.github.io/baphomet/"
:source-control (:git "https://github.com/thephoeron/baphomet")
:bug-tracker "https://github.com/thephoeron/baphomet/issues"
:mailto "[email protected]"
:version (:read-file-form "VERSION")
:licence "MIT"
:depends-on (baphomet
parachute)
:serial t
:components ((:module test
:components ((:file "suite")))))