From 8f9b59690660f85aeae675989fe9fe6b1b830445 Mon Sep 17 00:00:00 2001 From: Colin Okay Date: Fri, 11 Mar 2022 09:22:58 -0600 Subject: separated app from lib systems; added with-client-state --- oneliners.cli.asd | 27 +++++++++++++++++++++------ 1 file changed, 21 insertions(+), 6 deletions(-) (limited to 'oneliners.cli.asd') diff --git a/oneliners.cli.asd b/oneliners.cli.asd index 688d371..a0d5fb2 100644 --- a/oneliners.cli.asd +++ b/oneliners.cli.asd @@ -13,17 +13,32 @@ :components ((:module "lib" :components ((:file "package") - (:file "running") - (:file "term") - (:file "prompt") + + (:file "running") ; oneliners.cli.running package + (:file "term") ; oneliners.cli.term package + (:file "prompt") ; oneliners.cli.prompt package + + ;; oneliners.cli package (:file "util") (:file "oneliner") (:file "state") - (:file "client"))) - (:module "app" + (:file "client")))) + :description "A Command-Line tool for fetching, running, creating, + and updating unix oneliners from a oneliners wiki server of your + choice.") + +(defsystem "oneliners.cli/app" + :version "alpha-0.6.0" + :author "Colin Okay" + :license "AGPLv3" + :depends-on ("net.didierverna.clon" + "oneliners.cli") + :components ((:module "app" :components ((:file "package") (:file "app")))) - :description "") + :description "A Command-Line tool for fetching, running, creating, + and updating unix oneliners from a oneliners wiki server of your + choice.") -- cgit v1.2.3