2018-06-04 12:24:44 +00:00
|
|
|
#-asdf3.1 (error "cl-info requires ASDF 3.1")
|
2018-01-27 22:08:45 +00:00
|
|
|
(defsystem cl-info
|
2018-03-26 05:47:05 +00:00
|
|
|
: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)))
|
|
|
|
:perform (compile-op :before (o c)
|
|
|
|
#+ros.installing
|
|
|
|
(roswell:roswell '("install" "40ants/defmain")))
|
|
|
|
:in-order-to ((test-op (test-op cl-info-test))))
|
2018-01-27 22:08:45 +00:00
|
|
|
|