29 lines
1.1 KiB
Common Lisp
29 lines
1.1 KiB
Common Lisp
#|
|
|
This file is a part of cl-info project.
|
|
|#
|
|
|
|
|
|
(defsystem cl-info
|
|
:version (:read-file-form "version.lisp-expr")
|
|
:author ""
|
|
:license ""
|
|
:class :package-inferred-system
|
|
:pathname "src"
|
|
:depends-on (
|
|
"cl-info/core")
|
|
:description ""
|
|
:long-description
|
|
#.(with-open-file (stream (merge-pathnames
|
|
#p"README.rst"
|
|
(or *load-pathname* *compile-file-pathname*))
|
|
:if-does-not-exist nil
|
|
:direction :input)
|
|
(when stream
|
|
(let ((seq (make-array (file-length stream)
|
|
:element-type 'character
|
|
:fill-pointer t)))
|
|
(setf (fill-pointer seq)
|
|
(read-sequence seq stream))
|
|
seq)))
|
|
:in-order-to ((test-op (test-op cl-info-test))))
|
|
|