(defsystem #:cl-xdg-trash :version "0.1.0" :description "Common Lisp library to the XDG trash specification." :author "Alexander Rosenberg " :maintainer "Alexander Rosenberg " :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")))