-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcl-spark.asd
50 lines (39 loc) · 1.49 KB
/
cl-spark.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
43
44
45
46
47
48
49
50
;;;; Last modified: 2014-06-15 10:45:50 tkych
;; cl-spark/cl-spark.asd
;; Copyright (c) 2013 Takaya OCHIAI <[email protected]>
;; This software is released under the MIT License.
;; For more details, see cl-spark/LICENSE
;;====================================================================
;; CL-SPARK: Quick Data Visualization in Common Lisp.
;;====================================================================
;; cl-spark/
;; README.md
;; LICENSE
;; CHANGELOG
;; cl-spark.asd
;; spark.lisp
;; test.lisp
;; cl-spark-test.asd
;; spark-test.asd
;;====================================================================
;; System for CL-SPARK
;;====================================================================
(asdf:defsystem #:cl-spark
:name "cl-spark"
:description "
CL-Spark generates sparkline string for a list of the numbers.
CL-spark is a Common Lisp implementation of Zach Holman's `spark' and
Gil Gonçalves' `vspark' with little extention.
* spark: https://github.com/holman/spark
* vspark: https://github.com/LuRsT/vspark
* cl-spark: https://github.com/tkych/cl-spark
"
:version "0.1.13"
:licence "MIT License"
:author "Takaya OCHIAI <[email protected]>"
:components ((:file "spark")))
(defmethod perform ((o test-op) (s (eql (find-system :cl-spark))))
(declare (ignore o s))
(load-system :cl-spark-test)
(funcall (read-from-string "cl-spark-test:run-tests")))
;;====================================================================