-
Notifications
You must be signed in to change notification settings - Fork 2
/
rosa.asd
38 lines (33 loc) · 978 Bytes
/
rosa.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
#|
This file is a part of rosa project.
Copyright (c) 2017 Shinichi TANAKA (shinichi.tanaka45@gmail.com)
|#
#|
Text labeling language
Author: Shinichi TANAKA (shinichi.tanaka45@gmail.com)
|#
(defsystem :rosa
:class :package-inferred-system
:description "Text tagging language"
:version "1.0.1"
:author "Shinichi TANAKA"
:license "MIT"
:depends-on ("alexandria"
"trivial-gray-streams"
"rosa/main")
:in-order-to ((test-op (test-op :rosa/tests))))
(defsystem :rosa-cli
:class :package-inferred-system
:depends-on ("cl-yaml"
"inquisitor"
"jonathan"
"rosa/cli"))
(defsystem :rosa/tests
:class :package-inferred-system
:depends-on ("rove"
"flexi-streams"
"rosa/tests/basis"
"rosa/tests/semantics"
"rosa/tests/peruse"
"rosa/tests/indite")
:perform (test-op (o c) (uiop:symbol-call :rove ':run c)))