tsplit-sequence.asd - clic - Clic is an command line interactive client for gopher written in Common LISP
 (HTM) git clone git://bitreich.org/clic/ git://hg6vgqziawt5s4dj.onion/clic/
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) Tags
 (DIR) LICENSE
       ---
       tsplit-sequence.asd (841B)
       ---
            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 "split-sequence")))
           12 
           13 (defsystem :split-sequence/tests
           14   :author "Arthur Lemmens <alemmens@xs4all.nl>"
           15   :maintainer "Sharp Lispers <sharplispers@googlegroups.com>"
           16   :description "Split-Sequence test suite"
           17   :license "MIT"
           18   :depends-on (:split-sequence :fiveam)
           19   :components ((:file "tests")))
           20 
           21 (defmethod perform ((o test-op) (c (eql (find-system :split-sequence))))
           22   (load-system :split-sequence/tests)
           23   (symbol-call :5am :run! :split-sequence))