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

25 lines
768 B
Common Lisp

(defsystem #:cl-xdg-trash
:version "0.1.0"
:description "Common Lisp interface to the XDG trash specification."
: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 (#:local-time #:uiop #:trivial-features #:yason #:cffi)
:serial t
:components
((:file "package")
(:file "url-encode")
(:file "mountpoints")
(:file "trashinfo")
(:file "trash"))
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md")))
(defsystem #:cl-xdg-trash/tests
:description "Tests for cl-xdg-trash"
:depends-on (#:cl-xdg-trash #:lisp-unit)
:components
((:file "test-url-encode")))