(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)))