diff options
Diffstat (limited to 'oneliners.cli.asd')
-rw-r--r-- | oneliners.cli.asd | 27 |
1 files changed, 21 insertions, 6 deletions
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.") |