Jaidyn Ann
91c85c4ba4
I’d hoped these tweaks to the system-file would help binary-making work with ECL, but no dice. Anyway, the Makefile has a basic build recipe and one for installing Quicklisp, should the user not already have it installed.
24 lines
723 B
Common Lisp
24 lines
723 B
Common Lisp
(require "asdf")
|
|
|
|
(asdf:defsystem "eksd"
|
|
:version "0.11"
|
|
:license "GPLv3"
|
|
:author "Jaidyn Ann <jadedctrl@posteo.at>"
|
|
:homepage "https://hak.xwx.moe/jadedctrl/eksd"
|
|
:description "For reading files into hex— `xxd`-like with text-tables."
|
|
:depends-on ()
|
|
:components ((:file "src/eksd")))
|
|
|
|
(asdf:defsystem "eksd.unix"
|
|
:version "0.11"
|
|
:license "GPLv3"
|
|
:author "Jaidyn Ann <jadedctrl@posteo.at>"
|
|
:homepage "https://hak.xwx.moe/jadedctrl/eksd"
|
|
:description "UNIX terminal front-tend to eksd. `xxd` twin."
|
|
:class asdf:program-system
|
|
:build-operation "program-op"
|
|
:build-pathname "eksd"
|
|
:entry-point "eksd.unix:main"
|
|
:depends-on (:cl-strings :eksd :unix-opts)
|
|
:components ((:file "src/unix")))
|