Initial commit
This commit is contained in:
22
cl-xdg-trash.asd
Normal file
22
cl-xdg-trash.asd
Normal 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")))
|
Reference in New Issue
Block a user