roswell.roswell/roswell.asd
2016-01-10 23:14:35 +09:00

33 lines
1 KiB
Common Lisp

#-asdf
(require :asdf)
(in-package :cl-user)
(defpackage roswell-asd
(:use :cl :asdf))
(in-package :roswell-asd)
(defsystem roswell
:version "0.0.3.55"
:author "SANO Masatoshi"
:license "MIT"
:depends-on ()
:components ((:module "src"
:components
((:file "install%" :depends-on ("init"))
(:file "init"))))
:description "a command line tool to install and manage Common Lisp implementations damn easily."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.md"
(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 roswell-test))))