aboutsummaryrefslogtreecommitdiff
path: root/oneliners.cli.asd
blob: f1fb01b5f3f889638f26735776641f0d35932261 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
(defsystem "oneliners.cli"
  :version "alpha-0.7.1"
  :author "Colin Okay"
  :license "AGPLv3"
  :depends-on ("trivial-clipboard"
               "str"
               "jonathan"
               "dexador"
               "cl-readline"
               "magic-ed"
               "oneliners.api-client")
  :components ((:module "lib"
                :components
                ((:file "package")

                 (: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"))))
  :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.7.1"
  :author "Colin Okay"
  :license "AGPLv3"
  :depends-on ("clingon"
               "oneliners.cli")
  :components ((:module "app"
                :components
                ((:file "package")
                 (:file "app"))))
  :description "A Command-Line tool for fetching, running, creating,
  and updating unix oneliners from a oneliners wiki server of your
  choice.")