Initial commit

This commit is contained in:
2025-09-30 14:29:54 -07:00
commit 0419339a36
7 changed files with 983 additions and 0 deletions

22
cl-xdg-trash.asd Normal file
View File

@ -0,0 +1,22 @@
(defsystem #:cl-xdg-trash
:version "0.1.0"
:description "Common Lisp library 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")))