Files
cl-xdg-trash/clash/clash.asd
T

20 lines
613 B
Common Lisp
Raw Normal View History

2025-10-23 03:49:18 -07:00
(defsystem #:clash
:version "0.1.0"
:description "Command line interface to the XDG trashcan."
:author "Alexander Rosenberg <zanderpkg@pm.me>"
:maintainer "Alexander Rosenberg <zanderpkg@pm.me>"
:homepage "https://git.zander.im/Zander671/cl-xdg-trash"
:license "GPL3"
:depends-on (#:cl-xdg-trash #:cl-ppcre #:clingon)
:serial t
:components
2025-10-25 17:52:38 -07:00
((:file "format")
(:file "parse-date")
(:file "clash"))
2025-10-23 03:49:18 -07:00
:build-operation "program-op"
:build-pathname "clash"
2025-10-25 17:52:38 -07:00
:entry-point "clash:toplevel"
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md")))