-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcleson.asd
42 lines (39 loc) · 1.22 KB
/
cleson.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
37
38
39
40
41
42
#|
This file is a part of cleson project.
Copyright (c) 2015 carrotflakes
|#
#|
Author: carrotflakes
|#
(in-package :cl-user)
(defpackage cleson-asd
(:use :cl :asdf))
(in-package :cleson-asd)
(defsystem cleson
:version "0.1"
:author "carrotflakes"
:license "LLGPL"
:depends-on (:alexandria)
:components ((:module "src"
:components
((:file "cleson")))
(:module "lib"
:depends-on ("src")
:components
((:module "core"
:components
((:file "collection"))))))
:description "Egison-like pattern matching library"
: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 (test-op cleson-test))))