dotfiles/sbcl/.quicklisp/dists/quicklisp/software/split-sequence-v2.0.0/split-sequence.asd

29 lines
1 KiB
Text
Raw Normal View History

2020-01-20 14:13:08 -05:00
;;; -*- Lisp -*-
(defsystem :split-sequence
:author "Arthur Lemmens <alemmens@xs4all.nl>"
:maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
:description "Splits a sequence into a list of subsequences
delimited by objects satisfying a test."
:license "MIT"
:version (:read-file-form "version.sexp")
:components ((:static-file "version.sexp")
(:file "package")
(:file "vector")
(:file "list")
(:file "extended-sequence" :if-feature (:or :sbcl :abcl))
(:file "api")
(:file "documentation")))
(defsystem :split-sequence/tests
:author "Arthur Lemmens <alemmens@xs4all.nl>"
:maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
:description "Split-Sequence test suite"
:license "MIT"
:depends-on (:split-sequence :fiveam)
:components ((:file "tests")))
(defmethod perform ((o test-op) (c (eql (find-system :split-sequence))))
(load-system :split-sequence/tests)
(symbol-call :5am :run! :split-sequence))