blob: c14a6136c98d0785545b640143e9fd67a5548b1e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
(defsystem "resyn"
:name "resyn"
:version "0.1.0"
:author "EuAndreh and contributors"
:license "AGPL-3.0-or-later"
:homepage "https://euandre.org/s/resyn/"
:bug-tracker "https://euandre.org/s/resyn/TODOs.html"
:source-control (:git "https://euandre.org/git/resyn/")
:depends-on ("cl-ppcre")
:pathname "src/org/euandre"
:components ((:file "resyn"))
:description #.(uiop:read-file-string
(uiop:subpathname *load-truename* "description"))
:long-description #.(uiop:read-file-string
(uiop:subpathname *load-truename* "long-description"))
:in-order-to ((test-op (test-op "resyn/tests"))))
(defsystem "resyn/tests"
:description "Test system for resyn"
:depends-on ("resyn")
:pathname "tests/org/euandre"
:components ((:file "resyn-test"))
:perform (test-op (_o _c)
(uiop:symbol-call :org.euandre.resyn-test :main)))
|