-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathinvistra-numeral.asd
34 lines (32 loc) · 1.25 KB
/
invistra-numeral.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
(cl:in-package #:asdf-user)
(defsystem "invistra-numeral"
:description "Additional numeral printers for Invistra"
:license "BSD"
:author "Tarn W. Burton"
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Invistra"
:bug-tracker "https://github.com/s-expressionists/Invistra/issues"
:depends-on ("invistra")
:components ((:module code
:pathname "code/numeral/"
:serial t
:components ((:file "packages")
(:file "numeral")))))
(defsystem "invistra-numeral/test"
:description "Tests for additional numeral printers for Invistra"
:license "BSD"
:author "Tarn W. Burton"
:maintainer "Tarn W. Burton"
:version (:read-file-form "version.sexp")
:homepage "https://github.com/s-expressionists/Invistra"
:bug-tracker "https://github.com/s-expressionists/Invistra/issues"
:depends-on ("invistra-extrinsic"
"invistra-numeral"
"parachute")
:components ((:module code
:pathname "code/numeral/test/"
:serial t
:components ((:file "packages")
(:file "directive")
(:file "test")))))