forked from EuAndreh/defclass-std
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdefclass-std.asd
21 lines (21 loc) · 909 Bytes
/
defclass-std.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(defsystem defclass-std
:name "defclass-std"
:version "0.2.0"
:author "André Miranda"
:maintainer "vindarel"
:mailto "[email protected]"
;; :homepage "https://github.com/EuAndreh/defclass-std"
:homepage "https://github.com/lisp-maintainers/defclass-std"
:bug-tracker "https://github.com/lisp-maintainers/defclass-std/issues"
:source-control (:git "[email protected]:lisp-maintainers/defclass-std.git")
:license "LLGPL"
:depends-on (alexandria
closer-mop
anaphora)
:components ((:module "src"
:components ((:file "defclass-std")))
(:static-file "README.md"))
:description "Two shortcut macros to write DEFCLASS and PRINT-OBJECT forms quickly."
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-truename* "README.md"))
:in-order-to ((test-op (test-op defclass-std-test))))