aboutsummaryrefslogtreecommitdiff
path: root/resyn.asd
diff options
context:
space:
mode:
Diffstat (limited to 'resyn.asd')
-rw-r--r--resyn.asd24
1 files changed, 24 insertions, 0 deletions
diff --git a/resyn.asd b/resyn.asd
new file mode 100644
index 0000000..c14a613
--- /dev/null
+++ b/resyn.asd
@@ -0,0 +1,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)))