-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathspartns.asd
25 lines (23 loc) · 844 Bytes
/
spartns.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
(asdf:defsystem spartns
:name "spartns"
:version "1.4.7"
:maintainer "Jeronimo C. Pellegrini"
:author "Jeronimo C. Pellegrini"
:licence "LLGPL"
:description "SPARse TeNSor representation library"
:serial t
:components ((:file "spartns-packages")
(:file "utils")
(:file "spartns"))
:in-order-to ((test-op (load-op spartns-test)))
:properties ((#:author-email . "[email protected]")
((#:albert #:output-dir) . "doc/docbook")
((#:albert #:formats) . ("docbook"))
((#:albert #:docbook #:dtd) . "/usr/share/sgml/docbook/dtd/4.5/docbookx.dtd")))
(asdf:defsystem spartns-test
:depends-on ("spartns")
:serial t
:components ((:file "lisp-unit")
(:file "spartns-test-packages")
(:file "utils-test")
(:file "tests")))