-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
fmcs.asd
47 lines (43 loc) · 1.7 KB
/
fmcs.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
(in-package :cl-user)
(defpackage fmcs/asdf
(:nicknames fmcs/sys)
(:use cl asdf uiop))
(in-package :fmcs/asdf)
(defsystem fmcs
:description "Flavors Meta-Class System (FMCS) for Demonic Metaprogramming in Common Lisp, an alternative to CLOS+MOP, restored from the CMU AI Repository."
:author ("\"the Phoeron\" Colin J.E. Lupton <thephoeron@protonmail.com>"
"Jürgen Walther <juergen.walther@gmd.de>"
"Pierre Cointe"
"Thomas Christaller"
"Harry Bretthauer"
"Jürgen Kopp")
:maintainer "\"the Phoeron\" Colin J.E. Lupton <thephoeron@protonmail.com>"
:mailto "thephoeron@protonmail.com"
:homepage "https://thephoeron.github.io/fmcs/"
:source-control (:git "https://github.com/thephoeron/fmcs.git")
:bug-tracker "https://github.com/thephoeron/fmcs/issues"
:license "MIT"
:version (:read-file-form "VERSION")
:depends-on ((:feature :sbcl fare-quasiquote-extras))
:serial t
:components ((:file "package")
(:file "core")
(:file "root")
(:file "methods")
(:file "util")
(:file "map")
(:file "fmcs")))
(defsystem fmcs/test
:description "Test suite for the FMCS system."
:author "\"the Phoeron\" Colin J.E. Lupton <thephoeron@protonmail.com>"
:mailto "thephoeron@protonmail.com"
:homepage "https://thephoeron.github.io/fmcs/"
:source-control (:git "https://github.com/thephoeron/fmcs.git")
:bug-tracker "https://github.com/thephoeron/fmcs/issues"
:license "MIT"
:version (:read-file-form "VERSION")
:depends-on (fmcs)
:serial t
:components ((:module "test"
:components ((:file "package")
(:file "suite")))))