-
Notifications
You must be signed in to change notification settings - Fork 3
/
cl-change-case.asd
29 lines (26 loc) · 1.04 KB
/
cl-change-case.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
;;; cl-change-case.asd
(defsystem "cl-change-case"
:version (:read-file-line "version")
:author "Sebastian Christ"
:mailto "[email protected]"
:license "LLGPL"
:source-control (:git "[email protected]:rudolfochrist/cl-change-case.git")
:bug-tracker "https://github.com/rudolfochrist/cl-change-case/issues"
:depends-on ("cl-ppcre"
"cl-ppcre-unicode")
:components ((:module "src"
:components ((:file "cl-change-case")))
(:static-file "version"))
:description "Convert strings between camelCase, param-case, PascalCase and more"
:in-order-to ((test-op (load-op cl-change-case/test))))
(defsystem "cl-change-case/test"
:author "Sebastian Christ"
:mailto "[email protected]"
:description "Test system of cl-change-case"
:license "LLGPL"
:depends-on ("fiveam"
"cl-change-case")
:components ((:module "t"
:components ((:file "cl-change-case"))))
:perform (load-op :after (op c)
(uiop:symbol-call :5am :run! :cl-change-case)))