23 lines
683 B
Common Lisp
23 lines
683 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)
|
|
:serial t
|
|
:components
|
|
((:file "package")
|
|
(:file "url-encode")
|
|
(:file "trashinfo"))
|
|
: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")))
|