-
Notifications
You must be signed in to change notification settings - Fork 0
/
cl-rainbow.asd
36 lines (33 loc) · 1.1 KB
/
cl-rainbow.asd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#|
This file is a part of cl-rainbow project.
Copyright (c) 2012 Takayuki Sato (takayuki.sato.dev@gmail.com)
|#
#|
Author: Takayuki Sato (takayuki.sato.dev@gmail.com)
|#
(in-package :cl-user)
(defpackage cl-rainbow-asd
(:use :cl :asdf))
(in-package :cl-rainbow-asd)
(defsystem cl-rainbow
:version "0.1"
:author "Takayuki Sato"
:license "LLGPL"
:depends-on ()
:components ((:module "src"
:components
((:file "cl-rainbow"))))
:description "Common Lisp port of rubygem's rainbow."
:long-description
#.(with-open-file (stream (merge-pathnames
#p"README.markdown"
(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 (load-op cl-rainbow-test))))