(defsystem "oneliners.cli" :version "0.1.0" :author "Colin Okay" :license "AGPLv3" :depends-on ("cl-readline" "unix-opts") :components ((:module "src" :components ((:file "main")))) :description "" :in-order-to ((test-op (test-op "oneliners.cli/tests")))) (defsystem "oneliners.cli/tests" :author "Colin Okay" :license "AGPLv3" :depends-on ("oneliners.cli" "rove") :components ((:module "tests" :components ((:file "main")))) :description "Test system for oneliners.cli" :perform (test-op (op c) (symbol-call :rove :run c)))