mirror of
https://github.com/roswell/roswell.git
synced 2026-09-10 07:16:17 -04:00
33 lines
1 KiB
Common Lisp
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))))
|