split-sequence.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
(HTM) git clone git://bitreich.org/clic/ git://enlrupgkhuxnvlhsf6lc3fziv5h2hhfrinws65d7roiv6bfj7d652fid.onion/clic/
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Tags
(DIR) README
(DIR) LICENSE
---
split-sequence.asd (1037B)
---
1 ;;; -*- Lisp -*-
2
3 (defsystem :split-sequence
4 :author "Arthur Lemmens <alemmens@xs4all.nl>"
5 :maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
6 :description "Splits a sequence into a list of subsequences
7 delimited by objects satisfying a test."
8 :license "MIT"
9 :version (:read-file-form "version.sexp")
10 :components ((:static-file "version.sexp")
11 (:file "package")
12 (:file "vector")
13 (:file "list")
14 (:file "extended-sequence" :if-feature (:or :sbcl :abcl))
15 (:file "api")
16 (:file "documentation")))
17
18 (defsystem :split-sequence/tests
19 :author "Arthur Lemmens <alemmens@xs4all.nl>"
20 :maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
21 :description "Split-Sequence test suite"
22 :license "MIT"
23 :depends-on (:split-sequence :fiveam)
24 :components ((:file "tests")))
25
26 (defmethod perform ((o test-op) (c (eql (find-system :split-sequence))))
27 (load-system :split-sequence/tests)
28 (symbol-call :5am :run! :split-sequence))