eksd/eksd.asd
Jaidyn Ann f3b98f33d8 Tweak formatting (no functional changes)
Bring it more in line with what I consider OK
nowadays — proper copyright header, form-feed ^L
between sections, tweaked section headers,
indentation…
2024-05-26 17:35:11 -05:00

16 lines
474 B
Common Lisp
Executable File

(defsystem "eksd"
:version "0.1"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@teknik.io>"
:description "For reading files into hex— `xxd`-like with text-tables."
:depends-on ()
:components ((:file "eksd")))
(defsystem "eksd-unix"
:version "0.1"
:license "GPLv3"
:author "Jaidyn Ann <jadedctrl@teknik.io>"
:description "UNIX terminal front-tend to eksd. `xxd` twin."
:depends-on (:eksd :unix-opts :cl-strings)
:components ((:file "eksd-unix")))