-
Notifications
You must be signed in to change notification settings - Fork 6
/
lisp-xl.asd
38 lines (37 loc) · 1.24 KB
/
lisp-xl.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
(in-package :cl-user)
(defpackage lisp-xl-asd
(:use :cl :asdf))
(in-package :lisp-xl-asd)
(defsystem lisp-xl
:version "0.4"
:author "Flavio Egoavil"
:license "MIT license"
:depends-on (:zip
:cxml
:uiop
:xmls
:cl-csv
:cl-ppcre)
:components ((:module "src"
:serial t
:components
((:file "package")
(:file "util")
(:file "metadata")
(:file "col-process")
(:file "main")
(:file "csv-export"))))
:description "Read Microsoft XLSX files using Common Lisp"
: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 xlsx-test))))