blob: 1bc60c834c3cccbf5260d7dd6b26797d0959f66d (
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
44
|
(defsystem "oneliners.cli"
:version "alpha-0.6.1"
:author "Colin Okay"
:license "AGPLv3"
:depends-on ("trivial-clipboard"
"str"
"jonathan"
"dexador"
"net.didierverna.clon"
"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.6.1"
:author "Colin Okay"
:license "AGPLv3"
:depends-on ("net.didierverna.clon"
"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.")
|