-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathstr.asd
More file actions
21 lines (19 loc) · 734 Bytes
/
str.asd
File metadata and controls
21 lines (19 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
(in-package #:asdf-user)
(defsystem :str
:author "vindarel <vindarel@mailz.org>"
:maintainer "vindarel <vindarel@mailz.org>"
:license "MIT"
:version "0.21"
:homepage "https://github.com/vindarel/cl-str"
:bug-tracker "https://github.com/vindarel/cl-str/issues"
:source-control (:git "git@github.com:vindarel/cl-str.git")
:description "Modern, consistent and terse Common Lisp string manipulation library."
:depends-on (:cl-ppcre
:cl-ppcre-unicode
:cl-change-case)
:components ((:file "str")
(:static-file "README.md"))
:long-description
#.(uiop:read-file-string
(uiop:subpathname *load-pathname* "README.md"))
:in-order-to ((test-op (test-op "str.test"))))