-
Notifications
You must be signed in to change notification settings - Fork 37
/
ichiran.asd
61 lines (55 loc) · 1.69 KB
/
ichiran.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
;;;; ichiran.asd
(in-package :asdf)
(defsystem #:ichiran
:serial t
:description "Ichiran means list in Japanese"
:author "Timofei Shatrov <[email protected]>"
:license "MIT"
:depends-on (#:cl-ppcre
#:alexandria
#:split-sequence
#:postmodern
#:cxml
#:cl-unicode
#:cl-csv
#:lisp-unit
#:bordeaux-threads
#:jsown
#:lparallel
#:diff
#:cl+ssl
)
:components ((:file "package")
(:file "characters")
(:file "numbers")
(:file "conn")
(:file "dict-errata")
(:file "dict")
(:file "dict-grammar")
(:file "dict-split")
(:file "dict-counters")
(:file "dict-load")
(:file "romanize")
(:file "dict-custom")
(:file "deromanize")
(:file "kanji")
(:file "ichiran")
(:file "tests"))
:perform (test-op
(o s)
(uiop:symbol-call :ichiran/test :run-all-tests)))
(defsystem #:ichiran/cli
:serial t
:description "Command line interface for Ichiran"
:author "Timofei Shatrov <[email protected]>"
:license "MIT"
:depends-on (#:ichiran
#:unix-opts
)
:build-operation "program-op"
:build-pathname "ichiran-cli"
:entry-point "ichiran/cli::main"
:components ((:file "cli")))
#+sb-core-compression
(defmethod asdf:perform ((o asdf:image-op) (c asdf:system))
(uiop:dump-image (asdf:output-file o c) :executable t :compression t))