-
Notifications
You must be signed in to change notification settings - Fork 1
/
lol-re.asd
28 lines (25 loc) · 841 Bytes
/
lol-re.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
;;;; lol-re.asd
(defsystem "lol-re"
:version "0.1"
:serial t
:description "Small set of wrappers around CL-PPCRE in spirit of Let Over Lambda."
:author "Alexander Popolitov <popolit@gmail.com>"
:license "GPL"
:depends-on ("cl-ppcre"
"cl-interpol"
"cl-read-macro-tokens"
"named-readtables"
"defmacro-enhance"
"alexandria"
"iterate"
"hu.dwim.walker")
:components ((:file "syntax")
(:file "package")
(:file "lol-re"))
:in-order-to ((test-op (test-op "lol-re/tests"))))
(defsystem "lol-re/tests"
:description "Tests for LOL-RE."
:licence "GPL"
:depends-on ("lol-re" "fiveam" "iterate")
:components ((:file "tests"))
:perform (test-op (o c) (symbol-call :lol-re-tests :run-tests)))