You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
677 B
31 lines
677 B
(asdf:defsystem #:mfiano-utils |
|
:description "A utility library." |
|
:author "Michael Fiano <mail@mfiano.net>" |
|
:license "MIT" |
|
:homepage "https://git.mfiano.net/mfiano/mfiano-utils" |
|
:version "0.1.0" |
|
:encoding :utf-8 |
|
:depends-on |
|
(#:alexandria |
|
#:serapeum |
|
#:uiop) |
|
:pathname "src" |
|
:serial t |
|
:components |
|
((:file "package") |
|
(:file "closure") |
|
(:file "type") |
|
(:file "symbol") |
|
(:file "number") |
|
(:file "character") |
|
(:file "array") |
|
(:file "string") |
|
(:file "sequence") |
|
(:file "list") |
|
(:file "list-alist") |
|
(:file "list-plist") |
|
(:file "hash-table") |
|
(:file "macro") |
|
(:file "filesystem") |
|
(:file "math") |
|
(:file "misc")))
|
|
|