Trying to implement autoinstallation of defmain from the github.

This commit is contained in:
Alexander Artemenko 2018-03-26 08:47:05 +03:00
parent 6fb171800a
commit b1f610b2a9

View file

@ -1,16 +1,10 @@
#|
This file is a part of cl-info project.
|#
(defsystem cl-info (defsystem cl-info
:version (:read-file-form "version.lisp-expr") :version (:read-file-form "version.lisp-expr")
:author "" :author ""
:license "" :license ""
:class :package-inferred-system :class :package-inferred-system
:pathname "src" :pathname "src"
:depends-on ( :depends-on ("cl-info/core")
"cl-info/core")
:description "" :description ""
:long-description :long-description
#.(with-open-file (stream (merge-pathnames #.(with-open-file (stream (merge-pathnames
@ -25,5 +19,8 @@
(setf (fill-pointer seq) (setf (fill-pointer seq)
(read-sequence seq stream)) (read-sequence seq stream))
seq))) seq)))
:perform (compile-op :before (o c)
#+ros.installing
(roswell:roswell '("install" "40ants/defmain")))
:in-order-to ((test-op (test-op cl-info-test)))) :in-order-to ((test-op (test-op cl-info-test))))